This repository has been archived on 2022-08-24. You can view files and clone it, but cannot push or open issues or pull requests.

25 lines
633 B
Python
Raw Normal View History

""" Timing class """
2022-06-01 14:31:52 +01:00
import datetime
from dataclasses import dataclass
2022-06-01 14:31:52 +01:00
@dataclass
2022-06-06 12:20:48 +01:00
class Timing():
2022-06-01 14:31:52 +01:00
"""
Representation of a single timing from a lap in Formula One
Timings may contain:
driver_id: String
2022-06-01 14:31:52 +01:00
position: Integer
time: datetime.time
"""
def __init__(self, driver_id: str, position: int, time: datetime.time) -> None:
self.driver_id = driver_id
2022-06-01 14:31:52 +01:00
self.position = position
self.time = time
2022-06-06 12:20:48 +01:00
def __repr__(self) -> str:
members = ', '.join(f"{key}={value}" for key, value in self.__dict__.items())
return f"{type(self).__name__}({members})"