mirror of
https://github.com/django/django.git
synced 2025-04-01 12:06:43 +00:00
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…
x
Reference in New Issue
Block a user