Skip to content

Commit

Permalink
fix: import Union-related types in dispatch.py
Browse files Browse the repository at this point in the history
  • Loading branch information
deepyaman committed May 20, 2024
1 parent 00455a1 commit 7187b22
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ibis/common/dispatch.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
import inspect
import re
from collections import defaultdict
from types import UnionType
from typing import Union

from ibis.common.typing import (
Union,
UnionType,
evaluate_annotations,
get_args,
get_origin,
Expand Down
1 change: 0 additions & 1 deletion ibis/common/typing.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
if TYPE_CHECKING:
from typing_extensions import Self


from types import UnionType
from typing import TypeAlias

Expand Down

0 comments on commit 7187b22

Please sign in to comment.