Skip to content

Commit

Permalink
fix: generic
Browse files Browse the repository at this point in the history
  • Loading branch information
phi-friday committed Aug 15, 2024
1 parent 22b01cc commit b9d7a0e
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/airflow_serde_polars/utils/typing.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
from __future__ import annotations

from typing import TYPE_CHECKING, Any, Dict, List, Set, Tuple, Union
import sys
from typing import TYPE_CHECKING, Any, Union

if sys.version_info < (3, 9):
from typing import Dict, List, Set, Tuple
else:
Dict, List, Set, Tuple = dict, list, set, tuple

if TYPE_CHECKING:
from typing import Union

from typing_extensions import TypeAlias, TypeVar

T = TypeVar(
Expand Down

0 comments on commit b9d7a0e

Please sign in to comment.