Skip to content

Commit 18432c8

Browse files
fix(devbox): launch parameter typo
1 parent 8210c3c commit 18432c8

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 94
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-907baea7d51fd2660895c74603cf1ff765eb9f62eb10ce6e0c1d17ac1c16abf2.yml
3-
openapi_spec_hash: f1280edb22cdd91238efc2b18e3d324c
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-ae41f8669a7ba1eec677634573b55bace4dedcf7027e0c1fee503d7c44472e3e.yml
3+
openapi_spec_hash: 9a3c12559ec74a00adffe7b254757903
44
config_hash: 2363f563f42501d2b1587a4f64bdccaf

src/runloop_api_client/types/shared/launch_parameters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
class UserParameters(BaseModel):
1313
uid: int
14-
"""User ID (UID) for the Linux user. Must be a positive integer."""
14+
"""User ID (UID) for the Linux user. Must be a non-negative integer."""
1515

1616
username: str
1717
"""Username for the Linux user."""

src/runloop_api_client/types/shared_params/launch_parameters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
class UserParameters(TypedDict, total=False):
1515
uid: Required[int]
16-
"""User ID (UID) for the Linux user. Must be a positive integer."""
16+
"""User ID (UID) for the Linux user. Must be a non-negative integer."""
1717

1818
username: Required[str]
1919
"""Username for the Linux user."""

0 commit comments

Comments
 (0)