summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2021-02-07 15:19:08 +0100
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-02-15 21:14:28 +0100
commit493885f17375bf322a1b8d3ee7ba5a8dd4124599 (patch)
treeaef15312dbbb5bb48dc0919f651c467221a64ed1
parentd6129b9cef5e2636bf7ba71b3d48d72919e95b35 (diff)
downloadpylint-git-493885f17375bf322a1b8d3ee7ba5a8dd4124599.tar.gz
Ignore F401 'distutils.command.install_lib' imported but unused
Do we even want to use distutil anyway ?
-rw-r--r--setup.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index e5dccc3a7..94198a01a 100644
--- a/setup.py
+++ b/setup.py
@@ -40,7 +40,9 @@ try:
USE_SETUPTOOLS = 1
except ImportError:
- from distutils.command import install_lib # pylint: disable=unused-import
+ from distutils.command import ( # noqa: F401; pylint: disable=unused-import
+ install_lib,
+ )
from distutils.core import setup
USE_SETUPTOOLS = 0