From 76bf0f2ddf0a0f4d0a0ecdb8273a154386580b95 Mon Sep 17 00:00:00 2001 From: Luca Beltrame Date: Mon, 6 Jan 2020 04:23:14 +0100 Subject: [PATCH] Fix minor typo --- hyperdia.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hyperdia.py b/hyperdia.py index 42ff991..c821555 100755 --- a/hyperdia.py +++ b/hyperdia.py @@ -299,7 +299,7 @@ def trip_summary(trip: HyperdiaTrip) -> str: summary = (f"Total time: {trip.total_time} minutes," f" Total distance: {trip.total_distance}," - f" Total cost {trip.total_cost} JPY") + f" Total cost: {trip.total_cost} JPY") return table + "\n\n" + summary + "\n\n"