style: ruff format leftovers from Wave A-D sessions

Pure whitespace / line-wrap reformats accumulated when ruff format
ran during earlier waves but weren't included in their commits. No
semantic changes — collection literals reflowed, with-statement
context managers regrouped via PEP 617 parens.
This commit is contained in:
Renn F
2026-05-12 22:40:15 +02:00
parent 717b7895d0
commit 4dfd1daf1e
4 changed files with 64 additions and 31 deletions
@@ -164,9 +164,7 @@ async def test_force_true_bypasses_cache(
# First call populates the cache.
await svc.ensure_workspace(project_slug="roboco", agent_id=agent.id)
# Second call with force=True must bypass the cache and fetch again.
await svc.ensure_workspace(
project_slug="roboco", agent_id=agent.id, force=True
)
await svc.ensure_workspace(project_slug="roboco", agent_id=agent.id, force=True)
assert fetch_call_count == _EXPECTED_TWO_FETCHES, (
f"force=True should bypass cache and fetch again; "