Skip to content

Commit 46d7c50

Browse files
committed
fix: address PR review feedback (conventions, KISS, duplication)
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent dc3a244 commit 46d7c50

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

src/runloop_api_client/sdk/async_benchmark.py

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

0 commit comments

Comments
 (0)