From 085a0c1923e1aeabdf443ebdf7e188856f615642 Mon Sep 17 00:00:00 2001 From: claude Date: Wed, 27 May 2026 05:18:19 -0400 Subject: [PATCH] style(smolmachines): provision_git stub uses `pass` not `del` Addresses PR #69 review comment: `del plan, target` was just a silence-the-unused-arg gesture but reads oddly for a stub. `pass` is the standard "this is a stub" sentinel. Co-Authored-By: Claude Opus 4.7 --- claude_bottle/backend/smolmachines/backend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/claude_bottle/backend/smolmachines/backend.py b/claude_bottle/backend/smolmachines/backend.py index 094e9dd..37644b8 100644 --- a/claude_bottle/backend/smolmachines/backend.py +++ b/claude_bottle/backend/smolmachines/backend.py @@ -53,7 +53,7 @@ class SmolmachinesBottleBackend( # Chunk 4 follow-on: needs the git-gate inner Plan (so the # gitconfig insteadOf URL points at the gate's host) and # the agent image must contain `git`. Stub for chunk 4a. - del plan, target + pass def prepare_cleanup(self) -> SmolmachinesBottleCleanupPlan: return SmolmachinesBottleCleanupPlan()