mirror of
https://github.com/django/django.git
synced 2025-10-31 09:41:08 +00:00
Replaced set([foo, ...]) by {foo, ...} literals. Refs PR 3282.
Thanks Collin Anderson for the review.
This commit is contained in:
committed by
Loic Bistuer
parent
caf5cd7ba7
commit
b2aad7b836
@@ -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}
|
||||
|
||||
Reference in New Issue
Block a user