Fix PointSequence.__init__() when passed no points

This commit is contained in:
XANTRONIX 2025-03-22 14:47:20 -04:00
parent 559c1caa7b
commit 8cdf97164c

View file

@ -27,6 +27,7 @@ class PointSequence(list):
self.poly = None self.poly = None
if points is not None:
for point in points: for point in points:
typeof = type(point) typeof = type(point)