diff options
author | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2021-03-30 23:39:00 +0200 |
---|---|---|
committer | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2021-03-31 00:01:42 +0200 |
commit | da599c68b07694213666660e8e9f06afb88ef7ec (patch) | |
tree | 4d887d524a9bbb934d561e3149c5ee2afd16db0e /setup.py | |
parent | af7fba7ed3133b6c74fa7580ffeb4b30068a44ff (diff) | |
download | pylint-git-da599c68b07694213666660e8e9f06afb88ef7ec.tar.gz |
Fix Import of 'install_lib' is not used
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -39,13 +39,9 @@ from typing import Any, Dict try: from setuptools import setup from setuptools.command import easy_install as easy_install_lib - from setuptools.command import install_lib # pylint: disable=unused-import USE_SETUPTOOLS = 1 except ImportError: - from distutils.command import ( # noqa: F401; pylint: disable=unused-import - install_lib, - ) from distutils.core import setup USE_SETUPTOOLS = 0 |