mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 08:00:18 +07:00
I had to move addImports to PyClassRefactoringUtil because PySuperMethodCompletionContributor resides in python-psi-impl and, thus, has no access to PyOverrideImplementUtil. GitOrigin-RevId: cf2ac19da779977649144b2477bac3f8ae78bbcd
7 lines
95 B
Python
7 lines
95 B
Python
from typing import Optional
|
|
|
|
|
|
class Super:
|
|
def method(self) -> Optional[int]:
|
|
pass
|