Files
Mikhail Golubevandintellij-monorepo-bot a2af264b63 PY-45588 Add necessary imports on completing methods of superclasses to override
I had to move addImports to PyClassRefactoringUtil because PySuperMethodCompletionContributor
resides in python-psi-impl and, thus, has no access to PyOverrideImplementUtil.

GitOrigin-RevId: cf2ac19da779977649144b2477bac3f8ae78bbcd
2023-08-09 20:53:35 +00:00

7 lines
95 B
Python

from typing import Optional
class Super:
def method(self) -> Optional[int]:
pass