Skip to content

Commit 3dc2187

Browse files
committed
Disable buggy pylint unsubscriptable-object check
This check is redundant because it is a type-check that's already taken care of by mypy. Signed-off-by: Sahas Subramanian <[email protected]>
1 parent 958d0d0 commit 3dc2187

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,9 @@ disable = [
113113
# disabled because it conflicts with isort
114114
"wrong-import-order",
115115
"ungrouped-imports",
116+
# pylint's unsubscriptable check is buggy and is not needed because
117+
# it is a type-check, for which we already have mypy.
118+
"unsubscriptable-object",
116119
]
117120

118121
[tool.pylint.design]

0 commit comments

Comments
 (0)