Skip to content

Commit 90e389d

Browse files
committed
fix: format async_benchmark.py to pass ruff checks
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 46d7c50 commit 90e389d

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/runloop_api_client/sdk/async_benchmark.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,5 +163,7 @@ async def list_runs(
163163
**params,
164164
)
165165
return [
166-
AsyncBenchmarkRun(self._client, run.id, run.benchmark_id) for run in page.runs if run.benchmark_id is not None
166+
AsyncBenchmarkRun(self._client, run.id, run.benchmark_id)
167+
for run in page.runs
168+
if run.benchmark_id is not None
167169
]

0 commit comments

Comments
 (0)