mirror of
https://github.com/django/django.git
synced 2025-12-23 09:19:27 +00:00
Replaced set([foo, ...]) by {foo, ...} literals. Refs PR 3282.
Thanks Collin Anderson for the review.
This commit is contained in:
parent
caf5cd7ba7
commit
b2aad7b836
37 changed files with 123 additions and 122 deletions
|
|
@ -137,7 +137,7 @@ class OracleOperations(DatabaseOperations, BaseSpatialOperations):
|
|||
}
|
||||
geometry_functions.update(distance_functions)
|
||||
|
||||
gis_terms = set(['isnull'])
|
||||
gis_terms = {'isnull'}
|
||||
gis_terms.update(geometry_functions)
|
||||
|
||||
truncate_params = {'relate': None}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue