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

25 lines
802 B
Python

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
pass
def __str__(self):
return f"Location(latitude={self.latitude},longitude={self.longitude}, locality={self.locality}, country={self.country})"
def __repr__(self):
return f"Location(latitude={self.latitude},longitude={self.longitude}, locality={self.locality}, country={self.country})"