Files
openide/python/testData/completion/superMethodWithAnnotation.py
2019-02-28 18:06:50 +03:00

9 lines
158 B
Python

from typing import Dict
class Parent:
def overridable_method(self, param: str) -> Dict[str, str]:
pass
class Child(Parent):
def over<caret>