Skip to content

Commit d602631

Browse files
rc-0.16.0 (#562)
Co-authored-by: stuqdog <stuqdog@users.noreply.github.com>
1 parent 48d1621 commit d602631

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "viam-sdk"
3-
version = "0.15.0"
3+
version = "0.16.0"
44
description = "Viam Robotics Python SDK"
55
authors = [ "Naveed <naveed@viam.com>" ]
66
license = "Apache-2.0"

tests/mocks/services.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -614,11 +614,11 @@ def __init__(self, name: str):
614614
self.name = name
615615
self.timeout: Optional[float] = None
616616
self.properties = SLAM.Properties(
617-
cloud_slam=self.CLOUD_SLAM,
618-
mapping_mode=self.MAPPING_MODE,
619-
internal_state_file_type=self.INTERNAL_STATE_FILE_TYPE,
620-
sensor_info=self.SENSOR_INFO
621-
)
617+
cloud_slam=self.CLOUD_SLAM,
618+
mapping_mode=self.MAPPING_MODE,
619+
internal_state_file_type=self.INTERNAL_STATE_FILE_TYPE,
620+
sensor_info=self.SENSOR_INFO,
621+
)
622622
super().__init__(name)
623623

624624
async def get_internal_state(self, *, timeout: Optional[float] = None) -> List[bytes]:

0 commit comments

Comments
 (0)