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-01 14:31:52 +01:00

23 lines
574 B
Python

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
pass
def __str__(self):
return f"Lap(number={self.number}, timings={self.timings})"
def __repr__(self):
return f"Lap(number={self.number}, timings={self.timings})"