Skip to content

Commit

Permalink
Add "raw" to message strings.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Diamond committed Oct 5, 2023
1 parent cc3c018 commit da8d0f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/fusion_engine_client/messages/measurements.py
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,7 @@ class RawWheelTickOutput(WheelTickInput):
MESSAGE_VERSION = 0

def __str__(self):
return super().__str__().replace('Tick Input', 'Tick Output')
return super().__str__().replace('Wheel Tick Input', 'Raw Wheel Tick Output')

################################################################################
# Vehicle Tick Measurements
Expand Down Expand Up @@ -702,7 +702,7 @@ class RawVehicleTickOutput(VehicleTickInput):
MESSAGE_VERSION = 0

def __str__(self):
return super().__str__().replace('Tick Input', 'Tick Output')
return super().__str__().replace('Vehicle Tick Input', 'Raw Vehicle Tick Output')

################################################################################
# Deprecated Speed Measurement Definitions
Expand Down

0 comments on commit da8d0f0

Please sign in to comment.