We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec2ccbe commit e8be3e5Copy full SHA for e8be3e5
lib/matplotlib/axes/_base.py
@@ -7,7 +7,7 @@
7
from operator import attrgetter
8
import re
9
import types
10
-from typing import Callable, Union, TypeAlias
+from typing import Callable, Union
11
12
import numpy as np
13
@@ -34,7 +34,7 @@
34
_log = logging.getLogger(__name__)
35
36
37
-coords_type_base: TypeAlias = Union[
+coords_type_base = Union[
38
str,
39
martist.Artist,
40
mtransforms.Transform,
@@ -43,7 +43,7 @@
43
Union[mtransforms.Bbox, mtransforms.Transform]
44
]
45
46
-coords_type: TypeAlias = Union[
+coords_type = Union[
47
coords_type_base,
48
tuple[coords_type_base, coords_type_base]
49
0 commit comments