Removed unneeded int() call in GEOSCoordSeq.__len__().
This commit is contained in:
parent
0b013564ef
commit
a905891159
|
@ -31,7 +31,7 @@ class GEOSCoordSeq(GEOSBase):
|
|||
|
||||
def __len__(self):
|
||||
"Return the number of points in the coordinate sequence."
|
||||
return int(self.size)
|
||||
return self.size
|
||||
|
||||
def __str__(self):
|
||||
"Return the string representation of the coordinate sequence."
|
||||
|
|
Loading…
Reference in New Issue