Skip to content

Commit c064a2f

Browse files
release/v0.58.0 (#1025)
Co-authored-by: stuqdog <[email protected]>
1 parent f1c7686 commit c064a2f

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

src/viam/app/app_client.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1200,9 +1200,7 @@ async def delete_location_secret(self, secret_id: str, location_id: Optional[str
12001200
12011201
For more information, see `Fleet Management API <https://docs.viam.com/dev/reference/apis/fleet/#deletelocationsecret>`_.
12021202
"""
1203-
request = DeleteLocationSecretRequest(
1204-
location_id=location_id if location_id else "", secret_id=secret_id
1205-
)
1203+
request = DeleteLocationSecretRequest(location_id=location_id if location_id else "", secret_id=secret_id)
12061204
await self._app_client.DeleteLocationSecret(request, metadata=self._metadata)
12071205

12081206
async def get_robot(self, robot_id: str) -> Robot:
@@ -1706,9 +1704,7 @@ async def update_robot(self, robot_id: str, name: str, location_id: Optional[str
17061704
17071705
For more information, see `Fleet Management API <https://docs.viam.com/dev/reference/apis/fleet/#updaterobot>`_.
17081706
"""
1709-
request = UpdateRobotRequest(
1710-
id=robot_id, name=name, location=location_id if location_id else ""
1711-
)
1707+
request = UpdateRobotRequest(id=robot_id, name=name, location=location_id if location_id else "")
17121708
response: UpdateRobotResponse = await self._app_client.UpdateRobot(request, metadata=self._metadata)
17131709
return response.robot
17141710

src/viam/version_metadata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.57.1"
1+
__version__ = "0.58.0"
22

33
API_VERSION = "v0.1.483"
44
SDK_VERSION = __version__

0 commit comments

Comments
 (0)