Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fa7ed8b

Browse files
committed
Add metaclass to stub file
1 parent 996b647 commit fa7ed8b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/matplotlib/path.pyi

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ from numpy.typing import ArrayLike
77

88
from typing import Any, overload
99

10-
class Path:
10+
class _HideDeepcopyMeta(type): ...
11+
12+
class Path(metaclass=_HideDeepcopyMeta):
1113
code_type: type[np.uint8]
1214
STOP: np.uint8
1315
MOVETO: np.uint8

0 commit comments

Comments
 (0)