You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bazarr/libs/dogpile/util/typing.py

7 lines
131 B

import sys
if sys.version_info >= (3, 11):
from typing import Self
else:
from typing_extensions import Self # noqa: F401