Skip to content

Commit 64b9c6e

Browse files
committed
Fix != None to is not None
1 parent 71b9a2c commit 64b9c6e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

spot_wrapper/wrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,7 @@ def _start_query(self) -> None:
473473
self._logger.error("Error when getting robot command feedback: %s", e)
474474
self._spot_wrapper._last_trajectory_command = None
475475

476-
if self._spot_wrapper._last_navigate_to_command != None:
476+
if self._spot_wrapper._last_navigate_to_command is not None:
477477
is_moving = True
478478

479479
self._spot_wrapper._is_moving = is_moving

0 commit comments

Comments
 (0)