From aab668f55064347f40749e596a5cb0192a8376d0 Mon Sep 17 00:00:00 2001 From: Alexey Zakharenkov Date: Thu, 29 Sep 2022 20:18:05 +0300 Subject: [PATCH] Validation error 'Stop ... is nowhere near the tracks' was mistakenly supressed and now returned --- subway_structure.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/subway_structure.py b/subway_structure.py index 557c050..ef8226b 100644 --- a/subway_structure.py +++ b/subway_structure.py @@ -769,10 +769,12 @@ class Route: stops_on_longest_line = [] for i, route_stop in enumerate(self.stops): - if i < self.first_stop_on_rails_index: + if not ( + self.first_stop_on_rails_index + <= i + <= self.last_stop_on_rails_index + ): continue - elif i > self.last_stop_on_rails_index: - break if projected[i]['projected_point'] is None: self.city.error(