mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 13:39:36 +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
|