r
Size: a a a
r
a
r
t
т
t
class MyClass:
def get_me(self) -> MyClass:
return self
т
t
from typing import TypeVar, Generic
MyClassType = TypeVar('MyClass')
class MyClass(Generic[MyClassType]):
def get_me(self) -> MyClassType:
return self
т
d
t
from typing import TypeVar, Generic
MyClassType = TypeVar('MyClass')
class MyClass(Generic[MyClassType]):
def get_me(self) -> MyClassType:
return self
T
from __future__ import annotations
T
t
from __future__ import annotations
T
T
T
t