We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bdb085d commit 61165c3Copy full SHA for 61165c3
1 file changed
simplepeg/speg_visitor.py
@@ -28,8 +28,6 @@ class SPEG_actions_visitor(object):
28
def __init__(self, actions):
29
self.actions = actions
30
def visit(self, node):
31
- if not node:
32
- print 1
33
if node.children:
34
children = [self.visit(child) for child in node.children]
35
node.children = children
0 commit comments