Skip to content

Commit

Permalink
Exclude unscriptable-object rule.
Browse files Browse the repository at this point in the history
Python 3.7 gets this rule wrong for `Generic[]`.

pylint-dev/pylint#2416 tracks this issue in pylint.
  • Loading branch information
mrshannon committed Jan 3, 2019
1 parent 185dc35 commit 676a048
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,8 @@ disable=print-statement,
deprecated-sys-function,
exception-escape,
comprehension-escape,
too-few-public-methods
too-few-public-methods,
unsubscriptable-object

# Enable the message, report, category or checker with the given id(s). You can
# either give multiple identifier separated by comma (,) or put this option
Expand Down

0 comments on commit 676a048

Please sign in to comment.