🔇 No need to log line stops
This commit is contained in:
@@ -160,8 +160,6 @@ class Line(Base):
|
|||||||
for line_name, operator_name, stop_id in line_to_stop_ids:
|
for line_name, operator_name, stop_id in line_to_stop_ids:
|
||||||
if (stop := stops.get(stop_id)) is not None:
|
if (stop := stops.get(stop_id)) is not None:
|
||||||
if (stop_lines := lines.get((line_name, operator_name))) 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:
|
for stop_line in stop_lines:
|
||||||
stop_line.stops.append(stop)
|
stop_line.stops.append(stop)
|
||||||
found += 1
|
found += 1
|
||||||
|
Reference in New Issue
Block a user