""" Location class """
from dataclasses import dataclass
@dataclass
class Location():
"""
Representation of a Location for a Formula One Circuit
Locations may contain:
lat: Float
long: Float
locality: String
country: String
def __init__(self, latitude: float, longitude: float, locality: str, country: str) -> None:
self.latitude = latitude
self.longitude = longitude
self.locality = locality
self.country = country
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, Location) and (
self.latitude == __o.latitude and
self.longitude == __o.longitude and
self.locality == __o.locality and
self.country == __o.country
)