8000 Remove guard as per @timhoffm's suggestion · matplotlib/matplotlib@56fcafb · GitHub
[go: up one dir, main page]

Skip to content

Commit 56fcafb

Browse files
committed
Remove guard as per @timhoffm's suggestion
1 parent 81f6ba3 commit 56fcafb

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

lib/matplotlib/figure.pyi

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from collections.abc import Callable, Hashable, Iterable, Sequence
22
import os
3-
from typing import Any, IO, Literal, TypeVar, overload, TYPE_CHECKING
3+
from typing import Any, IO, Literal, TypeVar, overload
44

55
import numpy as np
66
from numpy.typing import ArrayLike
@@ -25,8 +25,7 @@ from matplotlib.lines import Line2D
2525
from matplotlib.patches import Rectangle, Patch
2626
from matplotlib.text import Text
2727
from matplotlib.transforms import Affine2D, Bbox, BboxBase, Transform
28-
if TYPE_CHECKING:
29-
from mpl_toolkits.mplot3d import Axes3D
28+
from mpl_toolkits.mplot3d import Axes3D
3029

3130
from .typing import ColorType, HashableList
3231

0 commit comments

Comments
 (0)
0