tests: remove extraneous print statement

This commit is contained in:
Todd Gamblin 2019-09-02 09:34:12 -07:00
parent d4bad06202
commit 2dc7467760

View File

@ -98,10 +98,6 @@ def descend_and_check(iterable, level=0):
for spec in specs:
dag = Spec(spec)
dag.normalize()
from pprint import pprint
pprint(dag.to_node_dict())
break
level = descend_and_check(dag.to_node_dict())
# level just makes sure we are doing something here