Files
openide/python/testData/stubs/BaseClassText.py
2018-01-12 15:35:46 +03:00

9 lines
144 B
Python

from typing import Generic, TypeVar
T = TypeVar('T')
V = TypeVar('V')
class Class(Generic[T, V], BaseClass1, SomeModule.SomeClass):
pass