Several small whitespace fixes for styleguide/flake8 violations

This commit is contained in:
Alex Gaynor 2014-01-01 09:37:52 -08:00
parent 0ce945a671
commit 791142e8b3
2 changed files with 2 additions and 3 deletions

View File

@ -49,4 +49,3 @@ class Interstate(NamedModel):
class SouthTexasInterstate(NamedModel):
"Projected model for South Texas Interstates."
path = models.LineStringField(srid=32140)

View File

@ -19,6 +19,7 @@ class NamedModel(models.Model):
def __str__(self):
return self.name
class Country(NamedModel):
mpoly = models.MultiPolygonField() # SRID, by default, is 4326
@ -37,7 +38,7 @@ class PennsylvaniaCity(City):
objects = models.GeoManager()
class Meta:
app_label = 'geoapp'
app_label = 'geoapp'
class State(NamedModel):
@ -62,7 +63,6 @@ if not spatialite:
class Feature(NamedModel):
geom = models.GeometryField()
class MinusOneSRID(models.Model):
geom = models.PointField(srid=-1) # Minus one SRID.