Update node.py

Fix return value error in *coords* property which was intended to build a tuple from two values for latitude and longitude.
This commit is contained in:
David Boertjes
2019-01-10 13:15:59 -05:00
committed by GitHub
parent 8d97fcd735
commit 3d7362743d

View File

@@ -36,7 +36,7 @@ class Node:
@property
def coords(self):
return tuple(self.lng, self.lat)
return (self.lng, self.lat)
@property
def location(self):