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

21 lines
379 B
Python
Raw Normal View History

""" Season class """
2022-06-01 15:31:52 +02:00
from dataclasses import dataclass
from ergast_py.models.model import Model
2022-06-01 15:31:52 +02:00
@dataclass
class Season(Model):
2022-06-01 15:31:52 +02:00
"""
Representation of a single Season in Formula One
2022-06-01 15:31:52 +02:00
Seasons may contain:
season: Integer
url: String
"""
def __init__(self, season: int, url: str) -> None:
self.season = season
self.url = url