From 090a2de3148fc6b0a849f90c58011967c65769cc Mon Sep 17 00:00:00 2001 From: Luca Beltrame Date: Mon, 6 Jan 2020 05:09:18 +0100 Subject: [PATCH] Smaller heading for routes --- hyperdia.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)