diff options
Diffstat (limited to 'pylint/checkers/classes.py')
-rw-r--r-- | pylint/checkers/classes.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pylint/checkers/classes.py b/pylint/checkers/classes.py index 117f44307..df9c8e6aa 100644 --- a/pylint/checkers/classes.py +++ b/pylint/checkers/classes.py @@ -246,6 +246,7 @@ def _has_different_parameters_default_value(original, overridden): astroid.ClassDef: "name", astroid.Tuple: "elts", astroid.List: "elts", + astroid.Dict: "items", } handled_types = tuple( astroid_type for astroid_type in astroid_type_compared_attr |