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/season.py
2022-06-01 14:31:52 +01:00

21 lines
493 B
Python

from dataclasses import dataclass
@dataclass
class Season:
"""
Representation of a single Season in Formula One
Seasons may contain:
season: Integer
url: String
"""
def __init__(self, season: int, url: str) -> None:
self.season = season
self.url = url
pass
def __str__(self):
return f"Season(season={self.season}, url={self.url})"
def __repr__(self):
return f"Season(season={self.season}, url={self.url})"