Skip to content

Commit 61165c3

Browse files
committed
Removed unnesesary print statement
1 parent bdb085d commit 61165c3

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

simplepeg/speg_visitor.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@ class SPEG_actions_visitor(object):
2828
def __init__(self, actions):
2929
self.actions = actions
3030
def visit(self, node):
31-
if not node:
32-
print 1
3331
if node.children:
3432
children = [self.visit(child) for child in node.children]
3533
node.children = children

0 commit comments

Comments
 (0)