fix: resolve pyright strict errors
lint / lint (push) Successful in 1m50s
test / unit (pull_request) Successful in 39s
test / integration (pull_request) Successful in 25s

This commit is contained in:
2026-06-09 02:15:18 +00:00
parent a397d37bbe
commit 3ceff1ac4f
10 changed files with 23 additions and 27 deletions
@@ -19,8 +19,6 @@ from ...egress import EgressPlan
from ...supervise import SupervisePlan
from ...git_gate import GitGatePlan
from ...backend import BottleSpec
from ...env import ResolvedEnv
# from ...workspace import workspace_plan as resolve_workspace_plan
from .bottle_plan import SmolmachinesBottlePlan
from .util import smolmachines_bundle_subnet, smolmachines_preflight
@@ -53,7 +51,7 @@ def resolve_plan(
resolved_env: ResolvedEnv,
agent_provision_plan: AgentProvisionPlan,
egress_plan: EgressPlan,
supervise_plan: SupervisePlan,
supervise_plan: SupervisePlan | None,
git_gate_plan: GitGatePlan,
stage_dir: Path,
) -> SmolmachinesBottlePlan: