Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/gruntworker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <code@rebertia.com>2015-03-09 06:18:41 +0300
committerChris Rebert <code@rebertia.com>2015-03-09 06:29:42 +0300
commit640c62bab08b4595432e62f5c28776b455e4491a (patch)
tree6f5e38470d94d4c22d1087745cba9690e53aa202
parent8c4717edbb2b74a3050f004a5baab423f028ed27 (diff)
hush pylint
-rwxr-xr-xgruntworker.py2
-rw-r--r--pylint.rc2
2 files changed, 2 insertions, 2 deletions
diff --git a/gruntworker.py b/gruntworker.py
index 919e471..bae068e 100755
--- a/gruntworker.py
+++ b/gruntworker.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
# coding=utf-8
-from sys import exit
+from sys import exit # pylint: disable=W0622
from subprocess import check_call, check_output, DEVNULL, CalledProcessError
from shutil import rmtree
from datetime import datetime
diff --git a/pylint.rc b/pylint.rc
index e9644f9..9ec6fa9 100644
--- a/pylint.rc
+++ b/pylint.rc
@@ -51,7 +51,7 @@ confidence=
# --enable=similarities". If you want to run only the classes checker, but have
# no Warning level messages displayed, use"--disable=all --enable=classes
# --disable=W"
-disable=C0111,C0301
+disable=I0011,C0111,C0301
[REPORTS]