diff options
author | bendikro <bro.devel+deluge@gmail.com> | 2016-05-03 12:26:35 +0200 |
---|---|---|
committer | Calum Lind <calumlind+deluge@gmail.com> | 2016-05-06 13:44:45 +0200 |
commit | 1a2ff9b089cd23efdef5c8d7dbed84f8ca300d1c (patch) | |
tree | ae98f2798e7126fc4ae7d494be196481590f3ab0 /.pylintrc | |
parent | [Lint] Remove warnings from .pylintrc (diff) | |
download | deluge-1a2ff9b089cd23efdef5c8d7dbed84f8ca300d1c.tar.xz deluge-1a2ff9b089cd23efdef5c8d7dbed84f8ca300d1c.zip |
[Lint] Fix and remove old-style-class from ignore warnings
Diffstat (limited to '.pylintrc')
-rw-r--r-- | .pylintrc | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -62,15 +62,14 @@ confidence= # # Arranged by category: Convention, Error, Information, Refactor, Warning. # 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, +disable=missing-docstring, invalid-name, bad-continuation, wrong-import-position, wrong-import-order, 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, super-init-not-called, - broad-except + no-init, super-init-not-called, broad-except [REPORTS] |