summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--django/contrib/gis/geos/coordseq.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/gis/geos/coordseq.py b/django/contrib/gis/geos/coordseq.py
index 0a71a2be4a..d6a7c6cdc7 100644
--- a/django/contrib/gis/geos/coordseq.py
+++ b/django/contrib/gis/geos/coordseq.py
@@ -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."