mirror of
https://github.com/django/django.git
synced 2025-08-03 10:34:04 +00:00
Fixed #28996 -- Simplified some boolean constructs and removed trivial continue statements.
This commit is contained in:
parent
4bcec02368
commit
a38ae914d8
34 changed files with 95 additions and 159 deletions
|
@ -81,11 +81,7 @@ class DistanceTest(TestCase):
|
|||
# Now performing the `dwithin` queries on a geodetic coordinate system.
|
||||
for dist in au_dists:
|
||||
with self.subTest(dist=dist):
|
||||
if isinstance(dist, D) and not oracle:
|
||||
type_error = True
|
||||
else:
|
||||
type_error = False
|
||||
|
||||
type_error = isinstance(dist, D) and not oracle
|
||||
if isinstance(dist, tuple):
|
||||
if oracle or spatialite:
|
||||
# Result in meters
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue