Skip to content

Commit 7266008

Browse files
authored
Merge pull request #30672 from rafakatri/fix_path_lib
Use pathlib.Path instead of matplotlib.path.Path in text.pyi
2 parents 36a6259 + 01c667d commit 7266008

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/text.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ from .artist import Artist
22
from .backend_bases import RendererBase
33
from .font_manager import FontProperties
44
from .offsetbox import DraggableAnnotation
5-
from .path import Path
5+
from pathlib import Path
66
from .patches import FancyArrowPatch, FancyBboxPatch
77
from .textpath import ( # noqa: F401, reexported API
88
TextPath as TextPath,

0 commit comments

Comments
 (0)