From 081b23e7020964765acf27941c397693d5c71c64 Mon Sep 17 00:00:00 2001 From: Christopher Teutsch Date: Sun, 19 May 2019 21:36:29 +0200 Subject: [PATCH] yeah that wasn't it --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2754024..ff8bce6 100644 --- a/setup.py +++ b/setup.py @@ -65,9 +65,9 @@ def get_lines(station_id: int) -> List[str]: if page: print("Paging in batches of 20 results.") for ptr in range(len(results)): + print(str(ptr) + ". " + results[ptr]['name']) 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") + ' ' - print(str(ptr) + ". " + results[ptr]['name']) else: for ptr in range(len(results)): print(str(ptr) + ". " + results[ptr]['name'])