From ae0a4a026d1a7bc5a6373ebd80ff8ecf2e0ca407 Mon Sep 17 00:00:00 2001 From: Ilya Zverev Date: Tue, 31 Oct 2017 16:35:42 +0300 Subject: [PATCH] Fix circular lines --- subway_structure.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/subway_structure.py b/subway_structure.py index c0ae445..822b08e 100644 --- a/subway_structure.py +++ b/subway_structure.py @@ -509,12 +509,9 @@ class Route: stop = self.stops[-1] else: # We've got a repeat - if seen_stops and seen_platforms: - city.error('Found an out-of-place {}: "{}" ({})'.format( - el_type, el['tags'].get('name', ''), k), relation) - repeat_pos = len(self.stops) - elif (el_type == 'stop' and not seen_platforms) or ( - el_type == 'platform' and not seen_stops): + if ((seen_stops and seen_platforms) or + (el_type == 'stop' and not seen_platforms) or + (el_type == 'platform' and not seen_stops)): # Circular route! stop = RouteStop(st) self.stops.append(stop)