refactor(bottle): finish bottle package move
lint / lint (push) Successful in 1m59s
test / unit (pull_request) Successful in 46s
test / integration (pull_request) Successful in 16s
test / coverage (pull_request) Successful in 57s

This commit is contained in:
2026-07-06 16:13:30 -04:00
parent d4a4c47bea
commit ec14ce0048
13 changed files with 688 additions and 394 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ import argparse
from ..backend import enumerate_active_agents
from ..backend.freeze import CommitCancelled, get_freezer
from ..bottle_state import read_metadata
from ..bottle.state import read_metadata
from ..log import die
from ._common import PROG
from . import tui
+1 -1
View File
@@ -17,7 +17,7 @@ from __future__ import annotations
import argparse
from ..backend import BottleSpec
from ..bottle_state import read_metadata
from ..bottle.state import read_metadata
from ..log import die
from ..manifest import ManifestIndex
from ._common import PROG, USER_CWD
+1 -1
View File
@@ -31,7 +31,7 @@ from ..backend import (
)
from ..backend.docker import util as docker_mod
from ..backend.docker.bottle_plan import DockerBottlePlan
from ..bottle_state import (
from ..bottle.state import (
cleanup_state,
is_preserved,
mark_preserved,
+1 -1
View File
@@ -20,7 +20,7 @@ from datetime import datetime, timezone
from pathlib import Path
from .. import supervise as _supervise
from ..bottle_state import read_metadata
from ..bottle.state import read_metadata
from ..backend.docker.egress_apply import (
EgressApplyError,
applicator as _docker_applicator,