From 578a4c819afd119aed503668036a0789c0d755a0 Mon Sep 17 00:00:00 2001 From: pyr0ball Date: Wed, 25 Feb 2026 21:41:09 -0800 Subject: [PATCH] fix: add app/__init__.py so wizard submodule is importable inside Docker Without __init__.py, Python treats app/ as a namespace package that doesn't resolve correctly when running from WORKDIR /app inside the container. 'from app.wizard.step_hardware import ...' raises ModuleNotFoundError: No module named 'app.wizard'; 'app' is not a package --- app/__init__.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 app/__init__.py diff --git a/app/__init__.py b/app/__init__.py new file mode 100644 index 0000000..e69de29