From 0cfca644a20ac1a7f5eb974199685064ba901610 Mon Sep 17 00:00:00 2001 From: schwalga <50154233+schwalga@users.noreply.github.com> Date: Sun, 8 Jan 2023 21:54:53 +0100 Subject: [PATCH] fix(#67) 80 > 79 :) --- code/acting/src/acting/pure_pursuit_controller.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/acting/src/acting/pure_pursuit_controller.py b/code/acting/src/acting/pure_pursuit_controller.py index 40cdf1e3..0d8d8a0d 100755 --- a/code/acting/src/acting/pure_pursuit_controller.py +++ b/code/acting/src/acting/pure_pursuit_controller.py @@ -77,7 +77,7 @@ def loop(timer_event=None): :return: """ if self.__path is None: - self.logwarn("PurePursuitController hasn't received a path yet " + self.logwarn("PurePursuitController hasn't received a path yet" "and can therefore not publish steering") return if self.__position is None: @@ -87,9 +87,9 @@ def loop(timer_event=None): return if self.__heading is None: - self.logwarn("PurePursuitController hasn't received the heading" - "of the vehicle yet and can therefore " - "not publish steering") + self.logwarn("PurePursuitController hasn't received the" + "heading of the vehicle yet and" + "can therefore not publish steering") return if self.__velocity is None: