This commit is contained in:
William Ballenthin
2020-06-28 01:26:53 -06:00
parent cd8446b7cd
commit 58f3d105c2

View File

@@ -69,7 +69,7 @@ def render_match(ostream, match, indent=0):
render_node(ostream, match, match['node'], indent=indent)
for child in match['children']:
render_match(ostream, child, indent=indent+1)
render_match(ostream, child, indent=indent + 1)
def render_vverbose(doc):
@@ -101,4 +101,4 @@ def render_vverbose(doc):
ostream.write('\n')
return ostream.getvalue()
return ostream.getvalue()