summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2014-03-30 04:59:09 +0200
committerFlorent Xicluna <florent.xicluna@gmail.com>2014-03-30 04:59:09 +0200
commitef4848b1caf0aef5cd5116428dac9671abfb4b4e (patch)
treeab8598d85289668a8188c63fca12f98673a161f3
parent20c7c950a79f24ad53cfc874689e32b903493f36 (diff)
downloadpyflakes-ef4848b1caf0aef5cd5116428dac9671abfb4b4e.tar.gz
Remove comment
-rw-r--r--pyflakes/checker.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/pyflakes/checker.py b/pyflakes/checker.py
index cb12906..1b23cf5 100644
--- a/pyflakes/checker.py
+++ b/pyflakes/checker.py
@@ -522,8 +522,6 @@ class Checker(object):
break
parent_stmt = self.getParent(node)
- # import pdb; pdb.set_trace()
-
if isinstance(parent_stmt, (ast.For, ast.comprehension)) or (
parent_stmt != node.parent and
not self.isLiteralTupleUnpacking(parent_stmt)):