Skip to content

Commit e98612f

Browse files
committed
Bump version to 0.11.0rc1
1 parent 0cfdc4e commit e98612f

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "viam-sdk"
3-
version = "0.10.0"
3+
version = "0.11.0rc1"
44
description = "Viam Robotics Python SDK"
55
authors = [ "Naveed <[email protected]>" ]
66
license = "Apache-2.0"

src/viam/app/app_client.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import json
22
from datetime import datetime
3-
from typing import Any, AsyncIterator, List, Mapping, Optional, Tuple, Union, Literal
3+
from typing import Any, AsyncIterator, List, Literal, Mapping, Optional, Tuple, Union
44

55
from grpclib.client import Channel
66
from typing_extensions import Self
@@ -25,10 +25,10 @@
2525
CreateLocationResponse,
2626
CreateLocationSecretRequest,
2727
CreateLocationSecretResponse,
28-
CreateOrganizationInviteRequest,
29-
CreateOrganizationInviteResponse,
3028
CreateModuleRequest,
3129
CreateModuleResponse,
30+
CreateOrganizationInviteRequest,
31+
CreateOrganizationInviteResponse,
3232
CreateRobotPartSecretRequest,
3333
CreateRobotPartSecretResponse,
3434
DeleteFragmentRequest,
@@ -120,13 +120,13 @@
120120
UpdateModuleResponse,
121121
UpdateOrganizationInviteAuthorizationsRequest,
122122
UpdateOrganizationInviteAuthorizationsResponse,
123+
UpdateOrganizationRequest,
124+
UpdateOrganizationResponse,
123125
UpdateRobotPartRequest,
124126
UpdateRobotPartResponse,
125127
UpdateRobotRequest,
126128
UpdateRobotResponse,
127129
UploadModuleFileRequest,
128-
UpdateOrganizationRequest,
129-
UpdateOrganizationResponse,
130130
Visibility,
131131
)
132132
from viam.utils import datetime_to_timestamp, dict_to_struct, struct_to_dict

src/viam/app/data_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ async def add_bounding_box_to_image_by_id(
420420
421421
Returns:
422422
str: The bounding box ID
423-
"""
423+
"""
424424
request = AddBoundingBoxToImageByIDRequest(
425425
label=label,
426426
binary_id=binary_id,

0 commit comments

Comments
 (0)