Skip to content

Commit 927e246

Browse files
committed
Fix broken types
1 parent ed970e1 commit 927e246

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/runloop_api_client/resources/blueprints.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ def create_and_await_build_complete(
249249
launch_parameters: Optional[LaunchParameters] | NotGiven = NOT_GIVEN,
250250
polling_config: PollingConfig | None = None,
251251
services: Optional[Iterable[blueprint_create_params.Service]] | NotGiven = NOT_GIVEN,
252-
system_setup_commands: Optional[List[str]] | NotGiven = NOT_GIVEN,
252+
system_setup_commands: Optional[SequenceNotStr[str]] | NotGiven = NOT_GIVEN,
253253
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
254254
# The extra values given here take precedence over values defined on the client or passed to this method.
255255
extra_headers: Headers | None = None,
@@ -766,7 +766,7 @@ async def create_and_await_build_complete(
766766
launch_parameters: Optional[LaunchParameters] | NotGiven = NOT_GIVEN,
767767
polling_config: PollingConfig | None = None,
768768
services: Optional[Iterable[blueprint_create_params.Service]] | NotGiven = NOT_GIVEN,
769-
system_setup_commands: Optional[List[str]] | NotGiven = NOT_GIVEN,
769+
system_setup_commands: Optional[SequenceNotStr[str]] | NotGiven = NOT_GIVEN,
770770
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
771771
# The extra values given here take precedence over values defined on the client or passed to this method.
772772
extra_headers: Headers | None = None,

0 commit comments

Comments
 (0)