Removed unneeded int() call in GEOSCoordSeq.__len__().

This commit is contained in:
Sergey Fedoseev 2020-01-22 13:54:22 +05:00
parent 0b013564ef
commit a905891159
1 changed files with 1 additions and 1 deletions

View File

@ -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."