updated docu

This commit is contained in:
Marco Zeisler 2021-05-15 17:53:58 +02:00
parent 903d48806e
commit 8d3d08e28e

View File

@ -33,7 +33,7 @@ class Vehicle:
velocity: float velocity: float
# stores the timestamp most recently used to calculate driving distance # stores the timestamp most recently used to calculate driving distance
last_update: Union[datetime, None] last_update: Union[datetime, None]
# marks if vehicle is currently driving # marks if vehicle is currently driving, a new one isn't, has to be started via self.start_driving()
driving: bool = False driving: bool = False
# stores last velocity before NCE, is used to recover after NCE # stores last velocity before NCE, is used to recover after NCE
_last_velocity: float _last_velocity: float