From 83bd20f9b3d6233ce03cc684b02f49b0b35a0a0e Mon Sep 17 00:00:00 2001 From: claude Date: Thu, 9 Jul 2026 18:00:10 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20pyright=20error=20in=20test=5Fcompose=20?= =?UTF-8?q?=E2=80=94=20annotate=20kwargs=20as=20dict[str,=20Any]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/unit/test_compose.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/unit/test_compose.py b/tests/unit/test_compose.py index 17cbe1a..59df6f4 100644 --- a/tests/unit/test_compose.py +++ b/tests/unit/test_compose.py @@ -267,7 +267,8 @@ class TestAgentAlwaysPresent(unittest.TestCase): def test_agent_depends_only_on_sidecars(self): # Bundle shape: the init supervisor owns intra-bundle daemon # ordering, so the agent waits on the bundle container alone. - for kwargs in [{}, {"with_git": True, "with_egress": True, "supervise": True}]: + cases: list[dict[str, Any]] = [{}, {"with_git": True, "with_egress": True, "supervise": True}] + for kwargs in cases: with self.subTest(**kwargs): s = bottle_plan_to_compose(_plan(**kwargs))["services"]["agent"] self.assertEqual(["sidecars"], s["depends_on"])