From 05e0a61908c52c685168d0e1ecd62e877db3fd2c Mon Sep 17 00:00:00 2001 From: Debasish Pradhan Date: Fri, 12 Jun 2026 14:43:38 +0530 Subject: [PATCH] Refactor import statement for greeter module --- ch11-modules-and-packages/1-working-with-modules/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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")