Disable pylint
's unsubscriptable-object
check
#54
Labels
part:cookiecutter
Affects the generation of projects using cookiecutter
part:tooling
Affects the development tooling (CI, deployment, dependency management, etc.)
type:enhancement
New feature or enhancement visitble to users
Milestone
pylint
's unsubscriptable check is unreliable, having some false positives. For example:This produces an error
E1136: Value 'a_map' is unsubscriptable (unsubscriptable-object)
when usingself.a_map["a"]
, which is wrong.This check is also redundant, as it is a type check, which is already done (better) by
mypy
.We should add this to the cookiecutter
pyproject.toml
template:The SDK is already using this ignore:
The text was updated successfully, but these errors were encountered: