summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2020-11-08 18:16:43 -0500
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2020-11-09 07:57:02 +0100
commit69ffaa297c07affd39d730e09c34d1cfad6ca883 (patch)
treed18694e9ea6b81bed2617f264192deac59b68627
parent84ca7b860223d9211976be1a179c727784defc7a (diff)
Removed BaseSpatialOperations.geometry.
Unused since 26996e2d55719deb0a0b85c642c88658c929106c.
-rw-r--r--django/contrib/gis/db/backends/base/operations.py3
1 files changed, 1 insertions, 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 = ()