summaryrefslogtreecommitdiff
path: root/pylint/checkers/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/checkers/base.py')
-rw-r--r--pylint/checkers/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/checkers/base.py b/pylint/checkers/base.py
index 7918b0ea1..1fd55c25e 100644
--- a/pylint/checkers/base.py
+++ b/pylint/checkers/base.py
@@ -1118,7 +1118,7 @@ class BasicChecker(_BasicChecker):
astroid.BoundMethod,
astroid.Module,
)
- structs = (astroid.Dict, astroid.Tuple, astroid.Set)
+ structs = (astroid.Dict, astroid.Tuple, astroid.Set, astroid.List)
# These nodes are excepted, since they are not constant
# values, requiring a computation to happen.