mirror of
https://github.com/django/django.git
synced 2024-11-29 22:56:46 +01:00
A handle of flake8 fixes
This commit is contained in:
parent
df6760f12c
commit
a5b94d9d4e
@ -1,6 +1,4 @@
|
|||||||
from django.conf import settings
|
|
||||||
from django.db.backends.postgresql_psycopg2.schema import DatabaseSchemaEditor
|
from django.db.backends.postgresql_psycopg2.schema import DatabaseSchemaEditor
|
||||||
from django.utils.functional import cached_property
|
|
||||||
|
|
||||||
|
|
||||||
class PostGISSchemaEditor(DatabaseSchemaEditor):
|
class PostGISSchemaEditor(DatabaseSchemaEditor):
|
||||||
|
@ -112,9 +112,9 @@ class GeometryField(Field):
|
|||||||
kwargs['srid'] = self.srid
|
kwargs['srid'] = self.srid
|
||||||
if self.dim != 2:
|
if self.dim != 2:
|
||||||
kwargs['dim'] = self.dim
|
kwargs['dim'] = self.dim
|
||||||
if self.spatial_index != True:
|
if self.spatial_index is not True:
|
||||||
kwargs['spatial_index'] = self.spatial_index
|
kwargs['spatial_index'] = self.spatial_index
|
||||||
if self.geography != False:
|
if self.geography is not False:
|
||||||
kwargs['geography'] = self.geography
|
kwargs['geography'] = self.geography
|
||||||
return name, path, args, kwargs
|
return name, path, args, kwargs
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user