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 1678730 commit b9be144Copy full SHA for b9be144
setuptools/_shutil.py
@@ -9,7 +9,8 @@
9
from distutils import log
10
11
try:
12
- from os import chmod
+ from os import chmod # pyright: ignore[reportAssignmentType]
13
+ # Losing type-safety w/ pyright, but that's ok
14
except ImportError:
15
# Jython compatibility
16
def chmod(*args: object, **kwargs: object) -> None: # type: ignore[misc] # Mypy reuses the imported definition anyway
0 commit comments