caesar0301 / treelib

An efficient implementation of tree data structure in python 2/3.
http://treelib.readthedocs.io/en/latest/
Other
800 stars 185 forks source link

Fix the print string to diplay, before it was printing an unformatted… #224

Open rokkian opened 3 months ago

rokkian commented 3 months ago

Fix the print string to diplay, before it was printing an unformatted I discovered this bug in the .show() method of the Tree class: whenever I try to print to stdout the Tree structure I get a messy string of Bytes, instead of a proper string with the supposed schema: image I removed the ".encode("utf-8")" from the self._reader to display and the print to stdout works as advertised: image