diff options
Diffstat (limited to 'checkers/variables.py')
-rw-r--r-- | checkers/variables.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/checkers/variables.py b/checkers/variables.py index e59a304..02ed3df 100644 --- a/checkers/variables.py +++ b/checkers/variables.py @@ -542,7 +542,7 @@ builtins. Remember that you should avoid to define new builtins when possible.' continue self._check_module_attrs(node, module, name.split('.')) - @check_messages('W0632') + @check_messages('unbalanced-tuple-unpacking') def visit_assign(self, node): """ Check unbalanced tuple unpacking for assignments. """ if not isinstance(node.value, astroid.Tuple): |