File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11__pycache__
22.coverage
33.DS_Store
4+ .env
45.pytest_cache /*
56.ruff_cache /*
67.venv /*
Original file line number Diff line number Diff line change 1+ typing_extensions ; python_version < "3.11"
Original file line number Diff line number Diff line change 44from __future__ import annotations
55
66import math
7- import sys
87from contextlib import suppress
98from typing import TYPE_CHECKING , overload
109
11- if sys .version_info >= (3 , 11 ):
12- from typing import Self
13- else :
14- from typing_extensions import Self
15-
1610with suppress (ImportError ):
1711 from typing import Literal
1812
1913
2014if TYPE_CHECKING :
15+ import sys
2116 from collections .abc import Iterator
2217 from fractions import Fraction
18+ if sys .version_info >= (3 , 11 ):
19+ from typing import Self
20+ else :
21+ from typing_extensions import Self
2322
2423
2524class Timecode :
You can’t perform that action at this time.
0 commit comments