diff --git a/python3/koans/about_modules.py b/python3/koans/about_modules.py index cf3af2fe5..721ba2a45 100644 --- a/python3/koans/about_modules.py +++ b/python3/koans/about_modules.py @@ -34,7 +34,7 @@ def test_we_can_import_multiple_items_at_once(self): def test_importing_all_module_attributes_at_once(self): # NOTE Using this module level import declared at the top of this script: - # from .other_local_module import * + # from .another_local_module import * # # Import wildcard cannot be used from within classes or functions