Skip to content

Commit

Permalink
Merge branch 'main' into mhidalgo/spot-testing
Browse files Browse the repository at this point in the history
  • Loading branch information
amessing-bdai authored Dec 18, 2023
2 parents 037c34a + 78ff69c commit 0454bab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spot_wrapper/wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -1287,8 +1287,8 @@ def power_on(self) -> typing.Tuple[bool, str]:
"""
# Don't bother trying to power on if we are already powered on
if not self.check_is_powered_on():
# If we are requested to start the estop, we have to acquire it when powering on.
if self._start_estop:
# If we are requested to start the estop, we have to acquire it when powering on. Ignore if estop is already acquired.
if self._start_estop and self._estop_keepalive is None:
self.resetEStop()
try:
self._logger.info("Powering on")
Expand Down

0 comments on commit 0454bab

Please sign in to comment.