From e2d0643db1f5c452a2789574879b95b18778786f Mon Sep 17 00:00:00 2001 From: TheDevKiller Date: Thu, 8 Nov 2018 22:58:44 +0100 Subject: [PATCH] Removed a line to print all the dict --- fetch.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/fetch.py b/fetch.py index 183437f..784162b 100755 --- a/fetch.py +++ b/fetch.py @@ -46,8 +46,7 @@ if __name__ == '__main__': # Print the dict (keep this code in the end of the file) print("===== Dict =====") for index, area in enumerate(diclist): - if index == 129: - print(f"\n-------------{index}----------------\n") - for element in area: - print(f" {element}: {diclist[index][element]}") + print(f"\n-------------{index}----------------\n") + for element in area: + print(f" {element}: {diclist[index][element]}") print("\n") \ No newline at end of file