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

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Kasten <jdkasten@umich.edu>2015-01-17 13:29:29 +0300
committerJames Kasten <jdkasten@umich.edu>2015-01-17 13:29:29 +0300
commitc9a3d8b0c26f0b508386933f1673268c574ce815 (patch)
treeff5d3dca57941aa66fe2bd91bfafd68c16946dc2 /.pylintrc
parent7f6837a1055933d21432cba8a2e08bfdaac0aabf (diff)
Cleanup Installer API change
Diffstat (limited to '.pylintrc')
-rw-r--r--.pylintrc6
1 files changed, 5 insertions, 1 deletions
diff --git a/.pylintrc b/.pylintrc
index 41a75ffac..2af1870c4 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -322,7 +322,11 @@ max-attributes=7
min-public-methods=2
# Maximum number of public methods for a class (see R0904).
-max-public-methods=20
+# Pylint counts all of the public methods that you also inherit.
+# This has been reported/fixed as a bug, but until our version is fixed,
+# I think this will only cause us headaches. (Unittests are automatically over)
+# https://bitbucket.org/logilab/pylint/issue/248/too-many-public-methods-triggered-from
+max-public-methods=100
[EXCEPTIONS]