Add Location type

This commit is contained in:
Dan 2018-03-09 14:46:58 +01:00
parent 4d367ce04e
commit 59f1fd9ee6

View File

@ -0,0 +1,6 @@
class Location:
def __init__(self,
longitude: float,
latitude: float):
self.longitude = longitude
self.latitude = latitude