File tree Expand file tree Collapse file tree
src/runloop_api_client/resources Expand file tree Collapse file tree Original file line number Diff line number Diff 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 (
Original file line number Diff line number Diff 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 (
You can’t perform that action at this time.
0 commit comments