1616 async_to_raw_response_wrapper ,
1717 async_to_streamed_response_wrapper ,
1818)
19- from ...lib .polling import PollingConfig , poll_until
2019from ..._constants import DEFAULT_TIMEOUT
20+ from ...lib .polling import PollingConfig , poll_until
2121from ..._base_client import make_request_options
2222from ...types .devboxes import execution_retrieve_params , execution_execute_sync_params , execution_execute_async_params
2323from ...lib .polling_async import async_poll_until
@@ -103,7 +103,6 @@ def await_completed(
103103 extra_query : Query | None = None ,
104104 extra_body : Body | None = None ,
105105 timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
106- idempotency_key : str | None = None ,
107106 ) -> DevboxAsyncExecutionDetailView :
108107 """Wait for an execution to complete.
109108
@@ -380,7 +379,6 @@ async def await_completed(
380379 extra_query : Query | None = None ,
381380 extra_body : Body | None = None ,
382381 timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
383- idempotency_key : str | None = None ,
384382 ) -> DevboxAsyncExecutionDetailView :
385383 """Wait for an execution to complete.
386384
@@ -406,7 +404,7 @@ async def retrieve_execution() -> DevboxAsyncExecutionDetailView:
406404 extra_headers = extra_headers ,
407405 extra_query = extra_query ,
408406 extra_body = extra_body ,
409- timeout = timeout
407+ timeout = timeout ,
410408 )
411409
412410 def is_done (execution : DevboxAsyncExecutionDetailView ) -> bool :
0 commit comments