From 29cdb35f2ef6dfc85f0efe6abfbffb2f6a0ac54d Mon Sep 17 00:00:00 2001 From: Nahuel Lofeudo Date: Fri, 19 May 2023 05:28:44 +0100 Subject: [PATCH] Forgot to initialize the added stops collection --- gtfs_client.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gtfs_client.py b/gtfs_client.py index 9977736..5bc3863 100644 --- a/gtfs_client.py +++ b/gtfs_client.py @@ -39,6 +39,7 @@ class GTFSClient(): self.stop_ids = self.__wanted_stop_ids() self.deltas = {} self.canceled_trips = set() + self.added_stops = [] # Schedule refresh self._update_queue = update_queue