mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +07:00
9 lines
144 B
Python
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
|