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
754 B
Python

from dataclasses import dataclass
@dataclass
class Status:
"""
Representation of the finishing status of a Driver in a Race
Statuses may contain:
statusId: Integer
count: Integer
status: String
"""
def __init__(self, statusId: int, count: int, status: str) -> None:
self.statusId = statusId
self.count = count
self.status = status
pass
def __str__(self) -> str:
members = ', '.join(f"{key}={value}" for key, value in self.__dict__.items())
return f"{type(self).__name__}({members})"
def __repr__(self) -> str:
members = ', '.join(f"{key}={value}" for key, value in self.__dict__.items())
return f"{type(self).__name__}({members})"