From 69ffaa297c07affd39d730e09c34d1cfad6ca883 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Sun, 8 Nov 2020 18:16:43 -0500 Subject: [PATCH] Removed BaseSpatialOperations.geometry. Unused since 26996e2d55719deb0a0b85c642c88658c929106c. --- django/contrib/gis/db/backends/base/operations.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/django/contrib/gis/db/backends/base/operations.py b/django/contrib/gis/db/backends/base/operations.py index 315735c1eb..b0331f051a 100644 --- a/django/contrib/gis/db/backends/base/operations.py +++ b/django/contrib/gis/db/backends/base/operations.py @@ -23,9 +23,8 @@ class BaseSpatialOperations: def select_extent(self): return self.select - # Does the spatial database have a geometry or geography type? + # Does the spatial database have a geography type? geography = False - geometry = False # Aggregates disallowed_aggregates = ()