From 4efe9e954bf0b5ab365dad4de5bd8fe18e83a258 Mon Sep 17 00:00:00 2001 From: "tone.chromebook" Date: Fri, 25 Oct 2019 06:51:09 -0500 Subject: [PATCH] fixed true bug and called monkey --- main.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index efbfb1d..e05a8f1 100644 --- a/main.py +++ b/main.py @@ -10,7 +10,7 @@ def christmas_is_coming(): def isMonkey(monkey_type): if (monkey_type): - return true + return True def main(): @@ -26,7 +26,9 @@ def main(): elif choice == 3: print("https://twitter.com/") - + monkey = PurpleBananaMonkey() + if monkey.isMonkey(): + print("i am a monkey") if __name__ == "__main__": main()