diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2019-10-06 16:12:15 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2019-10-06 16:12:15 -0400 |
commit | c7a086c5a0c8c66deeb7befd8d76183cd45ac74f (patch) | |
tree | 06a4a63e90bded1dabf86d15cdcf8f9e426ad3e8 /setup.py | |
parent | 671c3800c7a6495e971f682958ca0b52cab5bf3c (diff) | |
download | python-coveragepy-git-c7a086c5a0c8c66deeb7befd8d76183cd45ac74f.tar.gz |
Quiet pylint
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |