diff options
author | bendikro <bro.devel+deluge@gmail.com> | 2016-05-02 14:07:32 +0200 |
---|---|---|
committer | Calum Lind <calumlind+deluge@gmail.com> | 2016-05-06 13:44:45 +0200 |
commit | 3ec8dc6858f55083d7523673b5a211337eb76581 (patch) | |
tree | 5e2a03674f480329790f1b41996d194c09766a0a /.pylintrc | |
parent | [Tests] Cancel watchdog deferreds on test completion (diff) | |
download | deluge-3ec8dc6858f55083d7523673b5a211337eb76581.tar.xz deluge-3ec8dc6858f55083d7523673b5a211337eb76581.zip |
[Lint] Remove warnings from .pylintrc
Remove warnings from ignore list in .pylintrc:
* super-on-old-class
* pointless-except
* non-parent-init-called
Diffstat (limited to '.pylintrc')
-rw-r--r-- | .pylintrc | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -64,13 +64,13 @@ confidence= # Category per line (wrapped categories are indented) using symbolic names instead of ids. disable=missing-docstring, invalid-name, old-style-class, bad-continuation, wrong-import-position, wrong-import-order, - no-member, not-callable, no-name-in-module, super-on-old-class, + no-member, not-callable, no-name-in-module, locally-disabled, R, unused-argument, fixme, protected-access, import-error, unused-variable, global-statement, attribute-defined-outside-init, arguments-differ, - no-init, non-parent-init-called, super-init-not-called, - broad-except, pointless-except + no-init, super-init-not-called, + broad-except [REPORTS] |