Skip to content

Commit effb5ea

Browse files
committed
undo to see ci
1 parent 312b400 commit effb5ea

2 files changed

Lines changed: 0 additions & 4 deletions

File tree

src/runloop_api_client/resources/blueprints.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,6 @@ def create_and_await_build_complete(
231231
RunloopError: If blueprint enters a non-built terminal state
232232
"""
233233
# Pass all create_args to the underlying create method
234-
_ = create_args # Suppress unused parameter warning
235234
blueprint = self.create(**create_args)
236235

237236
return self.await_build_complete(
@@ -637,7 +636,6 @@ async def create_and_await_build_complete(
637636
RunloopError: If blueprint enters a non-built terminal state
638637
"""
639638
# Pass all create_args to the underlying create method
640-
_ = create_args # Suppress unused parameter warning
641639
blueprint = await self.create(**create_args)
642640

643641
return await self.await_build_complete(

src/runloop_api_client/resources/devboxes/devboxes.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,6 @@ def create_and_await_running(
445445
RunloopError: If devbox enters a non-running terminal state
446446
"""
447447
# Pass all create_args to the underlying create method
448-
_ = create_args # Suppress unused parameter warning
449448
devbox = self.create(**create_args)
450449

451450
return self.await_running(
@@ -1589,7 +1588,6 @@ async def create_and_await_running(
15891588
RunloopError: If devbox enters a non-running terminal state
15901589
"""
15911590
# Pass all create_args to the underlying create method
1592-
_ = create_args # Suppress unused parameter warning
15931591
devbox = await self.create(**create_args)
15941592

15951593
return await self.await_running(

0 commit comments

Comments
 (0)