diff --git a/exts/stride.simulator/stride/simulator/vehicles/vehicle.py b/exts/stride.simulator/stride/simulator/vehicles/vehicle.py index a6727f1..41d9997 100644 --- a/exts/stride.simulator/stride/simulator/vehicles/vehicle.py +++ b/exts/stride.simulator/stride/simulator/vehicles/vehicle.py @@ -143,7 +143,7 @@ def sim_start(self, event): if self._world.is_playing() and self._sim_running is False: self._sim_running = True self.start() - + def sim_stop(self, event): """ Callback that is called every time there is a timeline event such as stopping the simulation. @@ -151,7 +151,7 @@ def sim_stop(self, event): Args: event: A timeline event generated from Isaac Sim, such as stopping the simulation. """ - + # If the start/stop button was pressed, then call the stop method accordingly if self._world.is_stopped() and self._sim_running is True: self._sim_running = False diff --git a/run_pylint.sh b/run_pylint.sh old mode 100644 new mode 100755