Skip to content

Commit

Permalink
Pep8ify
Browse files Browse the repository at this point in the history
  • Loading branch information
leplatrem committed Sep 3, 2013
1 parent 66fa366 commit fb054fd
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion leaflet/forms/fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
else:
from django.contrib.gis.forms.fields import GeometryField as BaseField

class GeometryField(BaseField):
class GeometryField(BaseField): # noqa
geom_type = 'GEOMETRY'

def __init__(self, *args, **kwargs):
Expand Down
1 change: 0 additions & 1 deletion leaflet/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,6 @@ class PolygonWidget(LeafletWidget):
self.assertIn('#geometry { display: none; }', output)
self.assertIn('function geometry_map_callback(map, options)', output)


class LeafletGeoAdminMapTest(LeafletGeoAdminTest):

def test_widget_template_overriden(self):
Expand Down

0 comments on commit fb054fd

Please sign in to comment.