From 9b0bbc66eacc0be85e16adb6a1bfe69b4aae94d2 Mon Sep 17 00:00:00 2001 From: Christopher Teutsch Date: Sun, 19 May 2019 18:14:52 +0200 Subject: [PATCH] Properly separate line choices --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index cde146e..10ae4f2 100644 --- a/setup.py +++ b/setup.py @@ -67,7 +67,7 @@ def get_lines(station_id: int) -> List[str]: results_displayed = 0 for ptr in range(len(results)): if ptr % 20 == 0 or ptr == len(results) - 1 and ptr != 0: - choices += input("Please input your choices as a space-separated list (e.g. '0 2 7 15'):\n") + choices += input("Please input your choices as a space-separated list (e.g. '0 2 7 15'):\n") + ' ' print(str(ptr) + ". " + results[ptr]['name']) else: for ptr in range(len(results)):