Skip to content

Commit c722ee0

Browse files
committed
Make linters happy
1 parent 0b9e724 commit c722ee0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packaging/tags.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ def _is_manylinux_compatible(name, glibc_version):
323323
# type: (str, GlibcVersion) -> bool
324324
# Check for presence of _manylinux module.
325325
try:
326-
import _manylinux
326+
import _manylinux # noqa
327327

328328
return bool(getattr(_manylinux, name + "_compatible"))
329329
except (ImportError, AttributeError):
@@ -456,7 +456,7 @@ def _generic_platforms():
456456
def _interpreter_name():
457457
# type: () -> str
458458
try:
459-
name = sys.implementation.name
459+
name = sys.implementation.name # type: ignore
460460
except AttributeError: # pragma: no cover
461461
# Python 2.7 compatibility.
462462
name = platform.python_implementation().lower()

0 commit comments

Comments
 (0)