bump herepy to 0.6.3.3 (#28907)

* bump herepy to 0.6.3.3

* run gen_requirements_all
This commit is contained in:
Kevin Eifinger 2019-11-20 22:37:59 +01:00 committed by Franck Nijhof
parent ae3cf72fb2
commit 9f181ac92e
4 changed files with 5 additions and 5 deletions

View file

@ -71,8 +71,8 @@ def _build_mock_url(origin, destination, modes, app_id, app_code, departure):
"""Construct a url for HERE."""
base_url = "https://route.cit.api.here.com/routing/7.2/calculateroute.json?"
parameters = {
"waypoint0": origin,
"waypoint1": destination,
"waypoint0": f"geo!{origin}",
"waypoint1": f"geo!{destination}",
"mode": ";".join(str(herepy.RouteMode[mode]) for mode in modes),
"app_id": app_id,
"app_code": app_code,