Skip to content

Commit 86ea52d

Browse files
committed
format param of the function
1 parent 46f5848 commit 86ea52d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flask_googlemaps/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -750,7 +750,7 @@ def as_json(self):
750750

751751
return json_dict
752752

753-
def verify_lat_lng_coordinates(self,lat,lng):
753+
def verify_lat_lng_coordinates(self, lat, lng):
754754
if not (90 >= lat >= -90):
755755
raise AttributeError("Latitude must be between -90 and 90 degrees inclusive.")
756756
if not (180 >= lng >= -180):

0 commit comments

Comments
 (0)