From 64a78a241f2414fbc7374c7fad2339e50d65fe73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robin=20M=C3=BCller?= Date: Wed, 25 Dec 2024 23:22:48 +0000 Subject: [PATCH] Fix whitespaces --- pyrobosim/test/core/test_robot.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyrobosim/test/core/test_robot.py b/pyrobosim/test/core/test_robot.py index 465a8dde..5c212cbc 100644 --- a/pyrobosim/test/core/test_robot.py +++ b/pyrobosim/test/core/test_robot.py @@ -574,10 +574,10 @@ def test_execute_action_cancel(self, caplog): # Run action and check that it failed due to being canceled. result = robot.execute_action(action) assert result.status == ExecutionStatus.CANCELED - - # We want to make sure the cancellation thread is finished - # (cancel_actions has returned). - # Consequently, we must give the thread some time to detect the + + # We want to make sure the cancellation thread is finished + # (cancel_actions has returned). + # Consequently, we must give the thread some time to detect the # correct lifetime status time.sleep(0.1) assert not cancel_thread.is_alive()