Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Commit

Permalink
fix(#67) 80 > 79 :)
Browse files Browse the repository at this point in the history
  • Loading branch information
schwalga authored Jan 8, 2023
1 parent 7379fe2 commit 0cfca64
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions code/acting/src/acting/pure_pursuit_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand Down

0 comments on commit 0cfca64

Please sign in to comment.