From 3d7362743d78980f1ed2716a85ce6a2cfc57a45d Mon Sep 17 00:00:00 2001 From: David Boertjes Date: Thu, 10 Jan 2019 13:15:59 -0500 Subject: [PATCH] Update node.py Fix return value error in *coords* property which was intended to build a tuple from two values for latitude and longitude. --- gnpy/core/node.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnpy/core/node.py b/gnpy/core/node.py index 52265338..72e9c510 100644 --- a/gnpy/core/node.py +++ b/gnpy/core/node.py @@ -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):