Skip to content

Commit

Permalink
Apply some ruff suggestions
Browse files Browse the repository at this point in the history
RUF100 Unused blanket `noqa` directive
  • Loading branch information
DimitriPapadopoulos committed Jan 13, 2024
1 parent 57a6a7f commit 38626fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/packaging/_manylinux.py
Expand Up @@ -174,7 +174,7 @@ def _is_compatible(arch: str, version: _GLibCVersion) -> bool:
return False
# Check for presence of _manylinux module.
try:
import _manylinux # noqa
import _manylinux
except ImportError:
return True
if hasattr(_manylinux, "manylinux_compatible"):
Expand Down

0 comments on commit 38626fd

Please sign in to comment.