diff --git a/backend/backend/models/line.py b/backend/backend/models/line.py index 805968c..7527188 100644 --- a/backend/backend/models/line.py +++ b/backend/backend/models/line.py @@ -160,8 +160,6 @@ class Line(Base): for line_name, operator_name, stop_id in line_to_stop_ids: if (stop := stops.get(stop_id)) is not None: if (stop_lines := lines.get((line_name, operator_name))) is not None: - if len(stop_lines) > 1: - print(stop_lines) for stop_line in stop_lines: stop_line.stops.append(stop) found += 1