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.
ergast-py/ergast_py/models/lap.py
2022-06-09 23:19:28 +01:00

31 lines
747 B
Python

""" Lap class """
from dataclasses import dataclass
from ergast_py.models.timing import Timing
@dataclass
class Lap():
"""
Representation of a single Lap from a Formula One race
Laps may contain:
number: Integer
timings: Timing[]
"""
def __init__(self, number: int, timings: list[Timing]) -> None:
self.number = number
self.timings = timings
def __repr__(self) -> str:
members = ', '.join(f"{key}={value}" for key, value in self.__dict__.items())
return f"{type(self).__name__}({members})"
def __eq__(self, __o: object) -> bool:
return isinstance(__o, Lap) and (
self.number == __o.number and
self.timings == __o.timings
)