summaryrefslogtreecommitdiff
path: root/checkers/variables.py
diff options
context:
space:
mode:
Diffstat (limited to 'checkers/variables.py')
-rw-r--r--checkers/variables.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/checkers/variables.py b/checkers/variables.py
index 4bc0162..2ce7fcf 100644
--- a/checkers/variables.py
+++ b/checkers/variables.py
@@ -605,10 +605,6 @@ builtins. Remember that you should avoid to define new builtins when possible.'
return
targets = node.targets[0].itered()
- if any(not isinstance(target_node, astroid.AssName)
- for target_node in targets):
- return
-
try:
for infered in node.value.infer():
self._check_unpacking(infered, node, targets)