10000 prevent missing glob typing to bleed into _pyrepl mypy tests · python/cpython@e596130 · GitHub
[go: up one dir, main page]

Skip to content

Commit e596130

Browse files
committed
prevent missing glob typing to bleed into _pyrepl mypy tests
1 parent d83531f commit e596130

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/pathlib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import posixpath
1313
import sys
1414
from errno import *
15-
from glob import _StringGlobber, _no_recurse_symlinks
15+
from glob import _StringGlobber, _no_recurse_symlinks # type: ignore[attr-defined]
1616
from itertools import chain
1717
from stat import S_ISDIR, S_ISREG, S_ISSOCK, S_ISBLK, S_ISCHR, S_ISFIFO
1818
from _collections_abc import Sequence

0 commit comments

Comments
 (0)
0