Skip to content

Commit

Permalink
Bump version to 0.11.0rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
njooma committed Nov 22, 2023
1 parent 0cfdc4e commit e98612f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "viam-sdk"
version = "0.10.0"
version = "0.11.0rc1"
description = "Viam Robotics Python SDK"
authors = [ "Naveed <[email protected]>" ]
license = "Apache-2.0"
Expand Down
10 changes: 5 additions & 5 deletions src/viam/app/app_client.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import json
from datetime import datetime
from typing import Any, AsyncIterator, List, Mapping, Optional, Tuple, Union, Literal
from typing import Any, AsyncIterator, List, Literal, Mapping, Optional, Tuple, Union

from grpclib.client import Channel
from typing_extensions import Self
Expand All @@ -25,10 +25,10 @@
CreateLocationResponse,
CreateLocationSecretRequest,
CreateLocationSecretResponse,
CreateOrganizationInviteRequest,
CreateOrganizationInviteResponse,
CreateModuleRequest,
CreateModuleResponse,
CreateOrganizationInviteRequest,
CreateOrganizationInviteResponse,
CreateRobotPartSecretRequest,
CreateRobotPartSecretResponse,
DeleteFragmentRequest,
Expand Down Expand Up @@ -120,13 +120,13 @@
UpdateModuleResponse,
UpdateOrganizationInviteAuthorizationsRequest,
UpdateOrganizationInviteAuthorizationsResponse,
UpdateOrganizationRequest,
UpdateOrganizationResponse,
UpdateRobotPartRequest,
UpdateRobotPartResponse,
UpdateRobotRequest,
UpdateRobotResponse,
UploadModuleFileRequest,
UpdateOrganizationRequest,
UpdateOrganizationResponse,
Visibility,
)
from viam.utils import datetime_to_timestamp, dict_to_struct, struct_to_dict
Expand Down
2 changes: 1 addition & 1 deletion src/viam/app/data_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ async def add_bounding_box_to_image_by_id(
Returns:
str: The bounding box ID
"""
"""
request = AddBoundingBoxToImageByIDRequest(
label=label,
binary_id=binary_id,
Expand Down

0 comments on commit e98612f

Please sign in to comment.