Commit 5bde6c528ffffa106b0c27375fee0593b4741c1b
1 parent
2ac05e0c
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 | 974 | requested = request.args.getlist('a') |
975 | 975 | if not requested: |
976 | 976 | requested = request.args.getlist('a[]') |
977 | - #requested = _collect_request_args_list(('address', 'a')) | |
977 | + # requested = _collect_request_args_list(('address', 'a')) | |
978 | 978 | if not requested: |
979 | 979 | return Response( |
980 | 980 | response=""" |
... | ... | @@ -985,8 +985,6 @@ Usage example: <a href="/geocode.html?address=Toulouse,France&amp;address=Paris, |
985 | 985 | <p> |
986 | 986 | Please do not request this endpoint more than every two seconds. |
987 | 987 | </p> |
988 | - | |
989 | - | |
990 | 988 | """ |
991 | 989 | ) |
992 | 990 | ... | ... |