🔇 No need to log line stops

This commit is contained in:
2023-01-28 17:58:43 +01:00
parent f4d6a3e684
commit 27f895ce0c

View File

@@ -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