summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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