From 05e723db5178fd7d49de3ec19e8b0bb28871a988 Mon Sep 17 00:00:00 2001 From: Radu Ciorba Date: Tue, 31 Mar 2015 22:43:26 +0300 Subject: fix indentation, add changelog entry --- pylint/checkers/variables.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pylint/checkers/variables.py') diff --git a/pylint/checkers/variables.py b/pylint/checkers/variables.py index db99e97..8653d54 100644 --- a/pylint/checkers/variables.py +++ b/pylint/checkers/variables.py @@ -792,8 +792,8 @@ builtins. Remember that you should avoid to define new builtins when possible.' # mark the name as consumed if it's defined in this scope found_node = to_consume.get(name) if (found_node - and isinstance(node.parent, astroid.Assign) - and node.parent == found_node[0].parent): + and isinstance(node.parent, astroid.Assign) + and node.parent == found_node[0].parent): lhs = found_node[0].parent.targets[0] if lhs.name == name: # this name is defined in this very statement found_node = None -- cgit v1.2.1