Fix #13, PEP8-ify notebooks.

This commit is contained in:
Donne Martin
2015-07-11 15:35:22 -04:00
parent 03f04fbc4c
commit 235b6c5abe
6 changed files with 12 additions and 10 deletions

View File

@@ -9,9 +9,11 @@ class TestUtopianTree(object):
assert_equal(calc_utopian_tree_height(4), 7)
print('Success: test_utopian_tree')
def main():
test = TestUtopianTree()
test.test_utopian_tree()
if __name__ == '__main__':
main()