refactor(bottle): move runner/state package (7/25)
test / unit (pull_request) Failing after 19s
test / integration (pull_request) Failing after 18s
test / coverage (pull_request) Failing after 21s
lint / lint (push) Failing after 2m1s

This commit is contained in:
2026-07-06 16:10:52 -04:00
parent 39f028e355
commit c9daae07d2
+2 -2
View File
@@ -16,7 +16,7 @@ from __future__ import annotations
from abc import ABC, abstractmethod from abc import ABC, abstractmethod
from . import ActiveAgent from . import ActiveAgent
from ..bottle_state import mark_preserved, write_committed_image from ..bottle.state import mark_preserved, write_committed_image
from ..log import die, info from ..log import die, info
@@ -66,7 +66,7 @@ class Freezer(ABC):
def commit_slug(self, slug: str) -> None: def commit_slug(self, slug: str) -> None:
"""Convenience entry for cmd_commit when only a slug is available.""" """Convenience entry for cmd_commit when only a slug is available."""
from ..bottle_state import read_metadata from ..bottle.state import read_metadata
metadata = read_metadata(slug) metadata = read_metadata(slug)
agent = ActiveAgent( agent = ActiveAgent(
backend_name=self.backend_name, backend_name=self.backend_name,