From f5af811a531949fb0a85a700277002de42b4f93b Mon Sep 17 00:00:00 2001 From: Holger Bruch Date: Tue, 6 Feb 2024 18:38:14 +0100 Subject: [PATCH] fix indent --- amarillo/services/routing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amarillo/services/routing.py b/amarillo/services/routing.py index 3fc56dd..96f6229 100644 --- a/amarillo/services/routing.py +++ b/amarillo/services/routing.py @@ -21,7 +21,7 @@ def path_for_stops(self, points): else: return {} -def _get_directions(self, points): + def _get_directions(self, points): req_url = self._create_url(points, True, True) logger.debug("Get directions via: {}".format(req_url)) response = requests.get(req_url)