Skip to content

Commit

Permalink
[#393] CHORE: make pylint happy
Browse files Browse the repository at this point in the history
- disable unsubscriptable-object/ E1136 pylint rule to ignore «E1136: Value 'Callable' is unsubscriptable (unsubscriptable-object)» happening on condition.py at 41:28 if py version == 3.7.* or 3.8.* (works fine on 3.9.* and 3.10.*). Seems like it had been failing in the past and everything was OK:)
  • Loading branch information
yashaka committed May 29, 2022
1 parent 7e5fe17 commit 7aefd8b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .pylint-disabled-rules
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,5 @@ reimported,
multiple-statements,
E1120,
global-variable-not-assigned,
consider-using-f-string
consider-using-f-string,
unsubscriptable-object

0 comments on commit 7aefd8b

Please sign in to comment.