mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 15:35:40 +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
116 B
Python
7 lines
116 B
Python
from typing import Optional
|
|
|
|
from mod import Super
|
|
|
|
|
|
class Sub(Super):
|
|
def method(self) -> Optional[int]:<caret> |