summaryrefslogtreecommitdiffstats
path: root/.pylintrc
diff options
context:
space:
mode:
authorbendikro <bro.devel+deluge@gmail.com>2016-05-02 14:07:32 +0200
committerCalum Lind <calumlind+deluge@gmail.com>2016-05-06 12:44:45 +0100
commit3ec8dc6858f55083d7523673b5a211337eb76581 (patch)
tree5e2a03674f480329790f1b41996d194c09766a0a /.pylintrc
parent9be1bd523aea4c7218da1693e444f179f1cbc400 (diff)
downloaddeluge-3ec8dc6858f55083d7523673b5a211337eb76581.tar.gz
deluge-3ec8dc6858f55083d7523673b5a211337eb76581.tar.bz2
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--.pylintrc6
1 files changed, 3 insertions, 3 deletions
diff --git a/.pylintrc b/.pylintrc
index cb7eadf16..8a091e614 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -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]