From 7f8f4c58ee6aba6421c24027cd54ed21d365ab2d Mon Sep 17 00:00:00 2001 From: PreedhiVivek Date: Fri, 20 Sep 2019 11:59:25 +0530 Subject: [PATCH] fixed the module name issue --- 10_challenge/10_challenge.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/10_challenge/10_challenge.py b/10_challenge/10_challenge.py index 7d1edf8..304d33b 100644 --- a/10_challenge/10_challenge.py +++ b/10_challenge/10_challenge.py @@ -8,8 +8,8 @@ # print buzz for multiples of 5 # print fizzbuzz for multiples of 3 and 5" """ -import fizzbuzz +import fizzbuzz as f1 #----START OF SCRIPT if __name__=='__main__': - fizzbuzz(100) \ No newline at end of file + f1.fizzbuzz(100) \ No newline at end of file