Files
openide/python/testData/completion/superMethodWithAnnotation.after.py

9 lines
202 B
Python

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