From 5b59ce6c9a5c5ad48100ff2c35a7f2a5ca66becc Mon Sep 17 00:00:00 2001 From: didericis-codex Date: Mon, 6 Jul 2026 16:10:31 -0400 Subject: [PATCH] refactor(bottle): move runner/state package (1/25) --- bot_bottle/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot_bottle/__init__.py b/bot_bottle/__init__.py index 52ccd80..9a29d2a 100644 --- a/bot_bottle/__init__.py +++ b/bot_bottle/__init__.py @@ -1,6 +1,6 @@ """bot-bottle: Python implementation of the agent container launcher.""" -from .api import BottleError, destroy, freeze, resume_headless, start_headless +from .bottle import BottleError, destroy, freeze, resume_headless, start_headless __all__ = [ "BottleError",