Commit 27141fbc137d383ee8a83cc574c2e7a8660c633c

Authored by Antoine Goutenoir
1 parent ebfb50f0
Exists in master

chore: review

Showing 1 changed file with 1 additions and 3 deletions   Show diff stats
flaskr/controllers/main_controller.py
@@ -974,7 +974,7 @@ def query_geocode(): @@ -974,7 +974,7 @@ def query_geocode():
974 requested = request.args.getlist('a') 974 requested = request.args.getlist('a')
975 if not requested: 975 if not requested:
976 requested = request.args.getlist('a[]') 976 requested = request.args.getlist('a[]')
977 - #requested = _collect_request_args_list(('address', 'a')) 977 + # requested = _collect_request_args_list(('address', 'a'))
978 if not requested: 978 if not requested:
979 return Response( 979 return Response(
980 response=""" 980 response="""
@@ -985,8 +985,6 @@ Usage example: <a href="/geocode.html?address=Toulouse,France&address=Paris, @@ -985,8 +985,6 @@ Usage example: <a href="/geocode.html?address=Toulouse,France&address=Paris,
985 <p> 985 <p>
986 Please do not request this endpoint more than every two seconds. 986 Please do not request this endpoint more than every two seconds.
987 </p> 987 </p>
988 -  
989 -  
990 """ 988 """
991 ) 989 )
992 990