eaton-lab / toytree

A minimalist tree plotting library using toyplot graphs
http://eaton-lab.org/toytree
BSD 3-Clause "New" or "Revised" License
169 stars 28 forks source link

Python 3 fix #10

Closed Zsailer closed 7 years ago

Zsailer commented 7 years ago

I get the following error in Python 3 when trying to draw a tree with the tip labels aligned.

>>> tree.draw(tip_labels_align=True)

TypeError: unsupported operand type(s) for +: 'zip' and 'zip'

I just recast the two zips as lists to fix the problem.