Skip to content

Commit

Permalink
pylintrc: disable unsubscriptable-object error
Browse files Browse the repository at this point in the history
This check is flaky and sometimes reports false-positive errors.

  pylint-dev/pylint#1498

Disable the check since we cannot rely on it to find report actual bugs.

Signed-off-by: Robin Jarry <robin@jarry.cc>
  • Loading branch information
rjarry committed Mar 15, 2018
1 parent 62ef53c commit 10fc650
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions common/pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ disable=
interface-not-implemented,
bad-continuation,
keyword-arg-before-vararg,
unsubscriptable-object,
inconsistent-return-statements # (implicit return None)

[REPORTS]
Expand Down

0 comments on commit 10fc650

Please sign in to comment.