From 11fbb27fbb295715151320bc7d9e8d12b6d81998 Mon Sep 17 00:00:00 2001 From: TheDevKiller Date: Thu, 8 Nov 2018 12:49:55 +0100 Subject: [PATCH] Removed a line to print all the dict instead of the 33rd element --- fetch.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/fetch.py b/fetch.py index 9545bcc..267c97a 100755 --- a/fetch.py +++ b/fetch.py @@ -42,7 +42,6 @@ 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 == 33: - print(f"\n-------------{index}----------------\n") - for element in area: - print(f" {element}: {diclist[index][element]}") \ No newline at end of file + print(f"\n-------------{index}----------------\n") + for element in area: + print(f" {element}: {diclist[index][element]}") \ No newline at end of file