From 0b62dad2a45e9bf6b378e3ed16b062d38b88a23b Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Sat, 11 Oct 2025 18:40:37 +0000 Subject: [PATCH] fix: add src/__init__.py so src.resultathle imports resolve in CI and scripts Ensures tests and Pages build work with src-based imports without changing code structure. --- src/__init__.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/__init__.py diff --git a/src/__init__.py b/src/__init__.py new file mode 100644 index 0000000..54b024e --- /dev/null +++ b/src/__init__.py @@ -0,0 +1 @@ +# Namespace package marker to allow `src.*` imports during tests and scripts.