Skip to content

Commit a0b88d6

Browse files
pre-commit
1 parent 4eb35b8 commit a0b88d6

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

spot_wrapper/tests/test_wrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ def assert_non_processing_sit_status(should_sit: bool) -> None:
201201
logging.info(f"is standing? {simple_spot_wrapper.is_standing}")
202202

203203
# stand command with non-processing status - should reset the command and leave state unchanged
204-
assert_non_processing_stand_status(simple_spot_wrapper.is_standing) # BUG HERE
204+
assert_non_processing_stand_status(simple_spot_wrapper.is_standing) # BUG HERE
205205

206206
# initial sitting state
207207
assert simple_spot_wrapper.last_sit_command is None

spot_wrapper/wrapper.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,6 @@ def _start_query(self) -> None:
210210
except (ResponseError, RpcError) as e:
211211
self._logger.error("Error when getting robot command feedback: %s", e)
212212
self._spot_wrapper.last_stand_command = None
213-
214213

215214
if self._spot_wrapper.last_sit_command is not None:
216215
try:
@@ -236,7 +235,6 @@ def _start_query(self) -> None:
236235
except (ResponseError, RpcError) as e:
237236
self._logger.error("Error when getting robot command feedback: %s", e)
238237
self._spot_wrapper.last_sit_command = None
239-
240238

241239
is_moving = False
242240

0 commit comments

Comments
 (0)