mirror of https://github.com/morpheus65535/bazarr
7 lines
131 B
Python
7 lines
131 B
Python
|
import sys
|
||
|
|
||
|
if sys.version_info >= (3, 11):
|
||
|
from typing import Self
|
||
|
else:
|
||
|
from typing_extensions import Self # noqa: F401
|