Files

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