diff --git a/ch11-modules-and-packages/1-working-with-modules/main.py b/ch11-modules-and-packages/1-working-with-modules/main.py index 13cc631..d360d90 100644 --- a/ch11-modules-and-packages/1-working-with-modules/main.py +++ b/ch11-modules-and-packages/1-working-with-modules/main.py @@ -1,7 +1,7 @@ # Ch 11.1 - Modules and Packages # Solution to Exercise 2 -import greeter +from greeter import greet #Much cleen -greeter.greet("Real Python") +greet("Real Python")