Modernize code to Python 3.6+ and some cleanup
This commit is contained in:
@@ -16,7 +16,7 @@ class Coordinate:
|
||||
|
||||
lat: float
|
||||
long: float
|
||||
|
||||
|
||||
def __str__(self):
|
||||
ns = 'N' if self.lat >= 0 else 'S'
|
||||
we = 'E' if self.long >= 0 else 'W'
|
||||
|
||||
Reference in New Issue
Block a user