Skip to content

Commit

Permalink
.pylintrc: disable false positives from linter with python 3.6.7
Browse files Browse the repository at this point in the history
  • Loading branch information
zetienne committed Sep 30, 2023
1 parent a5b461e commit a4cfc5b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ disable=too-many-arguments, # ADDED: no sane alternative to many argumen
use-maxsplit-arg, # ADDED: suggestion just clutters the code.
too-many-instance-attributes, # ADDED: dumb class warning
too-few-public-methods, # ADDED: dumb class warning
no-self-use, # ADDED: lots of false positives with Python 3.6ish
raw-checker-failed,
bad-inline-option,
locally-disabled,
Expand Down

0 comments on commit a4cfc5b

Please sign in to comment.