Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vjdad4m committed Dec 9, 2023
1 parent f255921 commit 0c061ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/bkk_api/bkk_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def find_shortest_route_time(lat1, lon1, lat2, lon2):
gmaps = googlemaps.Client(key=os.environ['NEXT_PUBLIC_MAP_API_KEY'])

try:
directions_result = gmaps.directions(origin, destination, mode="walking")
directions_result = gmaps.directions(location1, location2, mode="walking")

print(directions_result)

Expand Down

0 comments on commit 0c061ab

Please sign in to comment.