Skip to content
This repository has been archived by the owner on Dec 15, 2020. It is now read-only.

Commit

Permalink
Remove main
Browse files Browse the repository at this point in the history
  • Loading branch information
Jackevansevo committed Apr 20, 2017
1 parent 539af65 commit bb44967
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions basic_utils/datastructures.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,12 +104,3 @@ def build_tree(self):

def depth_first(self):
return DepthFirstIterator(self)


if __name__ == '__main__':
udo = Node('Udo')
marc = Node('Lian')
marc.add_child(Node('Jim'))
ian = Node('Ian')
udo.add_children((marc, ian))
print(udo.build_tree())

0 comments on commit bb44967

Please sign in to comment.