From 57b3e946e55872e28279d4b204c5ae550f127a2d Mon Sep 17 00:00:00 2001 From: hectorjhs Date: Sun, 29 Jul 2018 00:21:48 -0500 Subject: [PATCH] fix issue #30, issue with converting points (missing parameter) --- topojson/mytypes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topojson/mytypes.py b/topojson/mytypes.py index 01186dd..e6eebc0 100644 --- a/topojson/mytypes.py +++ b/topojson/mytypes.py @@ -68,7 +68,7 @@ def geometry(self,geometry): return self.Polygon(geometry) elif geometry['type']== 'GeometryCollection': return self.GeometryCollection(geometry) - def point(self): + def point(self, coordinates): pass def line(self,coordinates): for coordinate in coordinates: