diff --git a/hyperdia.py b/hyperdia.py index d549c89..80264f2 100755 --- a/hyperdia.py +++ b/hyperdia.py @@ -318,7 +318,7 @@ def hyperdia_search(start_station: str, end_station: str, hour: int, for index, trip in enumerate(results, start=1): if output_type == "md": - print(f"#### Route {index}", end="\n\n") + print(f"##### Route {index}", end="\n\n") print(trip_summary(trip)) elif output_type == "json": table = convert_trip_to_table(trip)