We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 037c34a + 78ff69c commit 0454babCopy full SHA for 0454bab
spot_wrapper/wrapper.py
@@ -1287,8 +1287,8 @@ def power_on(self) -> typing.Tuple[bool, str]:
1287
"""
1288
# Don't bother trying to power on if we are already powered on
1289
if not self.check_is_powered_on():
1290
- # If we are requested to start the estop, we have to acquire it when powering on.
1291
- 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:
1292
self.resetEStop()
1293
try:
1294
self._logger.info("Powering on")
0 commit comments