From e9af84c009b4676e3bb883de098efbcb48563bb5 Mon Sep 17 00:00:00 2001 From: acidvegas Date: Sat, 27 May 2023 17:13:31 -0400 Subject: [PATCH] Removed break on missing results --- parser.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/parser.py b/parser.py index 3c399ec..ab903db 100644 --- a/parser.py +++ b/parser.py @@ -50,9 +50,6 @@ if len(sys.argv) >= 2: elif type(data) == list: for item in data: print(parse(item, raw)) - else: - print(f'error: \'{check}\' is an invalid or missing field') - break print(f'\nFound {found} results in {len(logs)} logs') else: print('usage: python parser.py [clean]\n')