From da1c2fc5aed9a36dc216c9415fe67b6df4caf6b9 Mon Sep 17 00:00:00 2001 From: chunlaw Date: Mon, 20 Jan 2025 20:11:25 +0000 Subject: [PATCH] Formatted Code! --- crawling/mergeStopList.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crawling/mergeStopList.py b/crawling/mergeStopList.py index aa7ffa3..d9f9c2f 100644 --- a/crawling/mergeStopList.py +++ b/crawling/mergeStopList.py @@ -17,7 +17,7 @@ def get_stop_group( def get_stops_haversine_distance(stop_a, stop_b): if stop_a['location']['lat'] == stop_b['location']['lat'] and stop_a['location']['lng'] == stop_b['location']['lng']: - return 0 + return 0 return haversine( (stop_a['location']['lat'], stop_a['location']['lng']), (stop_b['location']['lat'], stop_b['location']['lng']),