7 lines
131 B
7 lines
131 B
1 year ago
|
import sys
|
||
|
|
||
|
if sys.version_info >= (3, 11):
|
||
|
from typing import Self
|
||
|
else:
|
||
|
from typing_extensions import Self # noqa: F401
|