From 28f76fc4f444e4077d9f42b70d74f00e24ef57d5 Mon Sep 17 00:00:00 2001 From: Brian Wiborg Date: Thu, 2 Oct 2025 02:45:53 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9=20Fix=20typo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/ohmyapi/core/runtime.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/ohmyapi/core/runtime.py b/src/ohmyapi/core/runtime.py index 1db676f..b743d7f 100644 --- a/src/ohmyapi/core/runtime.py +++ b/src/ohmyapi/core/runtime.py @@ -302,8 +302,7 @@ class App: for _, subname, _ in pkgutil.iter_modules( mod.__path__, mod.__name__ + "." ): - submod = importlib.import_module(subname) - walk(submod) + walk(subname) # Walk the walk. walk(mod_name)