diff options
author | Claudiu Popa <cpopa@cloudbasesolutions.com> | 2015-05-16 18:25:57 +0300 |
---|---|---|
committer | Claudiu Popa <cpopa@cloudbasesolutions.com> | 2015-05-16 18:25:57 +0300 |
commit | f67d43227ebab39b21bb0528901934966bc6b20f (patch) | |
tree | ef02c0697093993718d7915ed08c8b0e0dcb88b2 /pylintrc | |
parent | 7d72dfb9add82de5b982491a64e24e94aaef5f7d (diff) | |
download | pylint-git-f67d43227ebab39b21bb0528901934966bc6b20f.tar.gz |
Fix some pylint warnings over pylint's codebase.
Diffstat (limited to 'pylintrc')
-rw-r--r-- | pylintrc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -67,7 +67,7 @@ disable=invalid-name,protected-access,fixme,too-many-branches, too-many-return-statements,too-few-public-methods, import-error,too-many-lines,too-many-instance-attributes, too-many-public-methods,duplicate-code,broad-except, - unbalanced-tuple-unpacking,redefined-builtin,anomalous-backslash-in-string, + redefined-builtin,anomalous-backslash-in-string, missing-docstring,no-member @@ -280,7 +280,7 @@ ignored-modules= # List of classes names for which member attributes should not be checked # (useful for classes with attributes dynamically set). -ignored-classes=SQLObject +ignored-classes=SQLObject, Values # When zope mode is activated, add a predefined set of Zope acquired attributes # to generated-members. |