Skip to content

Commit 1a40287

Browse files
release/v0.51.0 (#957)
Co-authored-by: lia-viam <[email protected]>
1 parent f643153 commit 1a40287

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

src/viam/robot/client.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -909,7 +909,6 @@ async def get_machine_status(self) -> GetMachineStatusResponse:
909909
request = GetMachineStatusRequest()
910910
return await self._client.GetMachineStatus(request)
911911

912-
913912
##################
914913
# Restart Module #
915914
##################

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.50.0"
1+
__version__ = "0.51.0"
22

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

tests/test_robot.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@
3232
GetVersionRequest,
3333
GetVersionResponse,
3434
Operation,
35-
RestartModuleRequest,
36-
RestartModuleResponse,
3735
ResourceNamesRequest,
3836
ResourceNamesResponse,
3937
ResourceStatus,
38+
RestartModuleRequest,
39+
RestartModuleResponse,
4040
RobotServiceStub,
4141
ShutdownRequest,
4242
ShutdownResponse,
@@ -564,7 +564,6 @@ async def shutdown_client_mock(self):
564564

565565
async def test_restart_module(self, service: RobotService):
566566
async with ChannelFor([service]) as channel:
567-
568567
client = await RobotClient.with_channel(channel, RobotClient.Options())
569568

570569
with mock.patch("viam.robot.client.RobotClient.restart_module") as restart_module_mock:

0 commit comments

Comments
 (0)