From d28b2f1503f6dadd02cc2fa0193c257c790d4644 Mon Sep 17 00:00:00 2001 From: Alexey Zakharenkov Date: Thu, 10 Feb 2022 17:59:26 +0300 Subject: [PATCH] Make "Route has no stops" a warning, not an error --- subway_structure.py | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/subway_structure.py b/subway_structure.py index b925bb5..c42de3d 100644 --- a/subway_structure.py +++ b/subway_structure.py @@ -965,11 +965,7 @@ class Route: ), relation, ) - if not self.stops: - city.error('Route has no stops', relation) - elif len(self.stops) == 1: - city.error('Route has only one stop', relation) - else: + if len(self.stops) > 1: self.is_circular = ( self.stops[0].stoparea == self.stops[-1].stoparea ) @@ -1552,6 +1548,13 @@ class City: continue route = Route(el, self, master) + if not route.stops: + self.warn('Route has no stops', el) + continue + elif len(route.stops) == 1: + self.warn('Route has only one stop', el) + continue + k = el_id(master) if master else route.ref if k not in self.routes: self.routes[k] = RouteMaster(master)