From 80f43949ef4651c0ced78b94485f00e07c510560 Mon Sep 17 00:00:00 2001 From: Alexandre Quemy Date: Thu, 1 Jan 2026 19:30:10 +0100 Subject: [PATCH] fix: create namespace package init with pkgutil.extend_path - Create missing hother/__init__.py file - Add pkgutil.extend_path() for namespace package support - Enables other packages in hother namespace to be imported --- src/hother/__init__.py | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 src/hother/__init__.py diff --git a/src/hother/__init__.py b/src/hother/__init__.py new file mode 100644 index 0000000..b390758 --- /dev/null +++ b/src/hother/__init__.py @@ -0,0 +1,2 @@ +# Namespace package +__path__ = __import__("pkgutil").extend_path(__path__, __name__)