summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2019-10-06 16:12:15 -0400
committerNed Batchelder <ned@nedbatchelder.com>2019-10-06 16:12:15 -0400
commitc7a086c5a0c8c66deeb7befd8d76183cd45ac74f (patch)
tree06a4a63e90bded1dabf86d15cdcf8f9e426ad3e8 /setup.py
parent671c3800c7a6495e971f682958ca0b52cab5bf3c (diff)
downloadpython-coveragepy-git-c7a086c5a0c8c66deeb7befd8d76183cd45ac74f.tar.gz
Quiet pylint
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/setup.py b/setup.py
index c500ae6e..09d4eb17 100644
--- a/setup.py
+++ b/setup.py
@@ -11,9 +11,9 @@ import sys
# Setuptools has to be imported before distutils, or things break.
from setuptools import setup
-from distutils.core import Extension # pylint: disable=no-name-in-module, import-error, wrong-import-order
-from distutils.command.build_ext import build_ext # pylint: disable=no-name-in-module, import-error, wrong-import-order
-from distutils import errors # pylint: disable=no-name-in-module, wrong-import-order
+from distutils.core import Extension # pylint: disable=wrong-import-order
+from distutils.command.build_ext import build_ext # pylint: disable=wrong-import-order
+from distutils import errors # pylint: disable=wrong-import-order
# Get or massage our metadata. We exec coverage/version.py so we can avoid