Skip to content

Commit

Permalink
Fix Python 3 incompatibility w/r/t iterators
Browse files Browse the repository at this point in the history
  • Loading branch information
suchow authored Dec 22, 2017
1 parent 040e5b2 commit 695183b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion monkeys/tools/display.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def add_edge(*pair):
)
continue

elif len(params) > 1:
elif len(list(params)) > 1:
# show composition of constructed type from constituents
graph.node(
targeting_function.readable_params,
Expand Down

0 comments on commit 695183b

Please sign in to comment.