From cb3a74edb00db83d20dcde527d8a9531098f56fa Mon Sep 17 00:00:00 2001 From: didericis Date: Fri, 24 Jul 2026 18:22:03 -0400 Subject: [PATCH] refactor(orchestrator): collapse supervisor package into supervisor.py orchestrator/supervisor/ held only __init__.py, so the package no longer earns its own directory. Moved it to orchestrator/supervisor.py and removed the dir. External imports are unchanged (orchestrator.supervisor resolves identically as a module); only the file's own relative-import depths shift up one level. Full unit suite green (2243). Co-Authored-By: Claude Opus 4.8 --- .../{supervisor/__init__.py => supervisor.py} | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) rename bot_bottle/orchestrator/{supervisor/__init__.py => supervisor.py} (91%) diff --git a/bot_bottle/orchestrator/supervisor/__init__.py b/bot_bottle/orchestrator/supervisor.py similarity index 91% rename from bot_bottle/orchestrator/supervisor/__init__.py rename to bot_bottle/orchestrator/supervisor.py index de4cf24..7db7839 100644 --- a/bot_bottle/orchestrator/supervisor/__init__.py +++ b/bot_bottle/orchestrator/supervisor.py @@ -19,12 +19,12 @@ from __future__ import annotations from pathlib import Path -from ...supervisor.types import * # noqa: F401,F403 — re-export the neutral vocabulary -from ...supervisor.plan import SupervisePlan -from ..store.store_manager import StoreManager -from ..store.queue_store import QueueStore -from ...store.audit_store import AuditStore -from ...supervisor.types import AuditEntry, Proposal, Response +from ..supervisor.types import * # noqa: F401,F403 — re-export the neutral vocabulary +from ..supervisor.plan import SupervisePlan +from .store.store_manager import StoreManager +from .store.queue_store import QueueStore +from ..store.audit_store import AuditStore +from ..supervisor.types import AuditEntry, Proposal, Response class Supervisor: