From 60a38d30eb6209cf363d28347a2637bdcb659a3a Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Thu, 22 May 2025 19:12:26 -0600 Subject: [PATCH] chore: Remove unnecessary comments about multipart data --- har_parser.py | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/har_parser.py b/har_parser.py index 3001027..5b9d476 100644 --- a/har_parser.py +++ b/har_parser.py @@ -97,20 +97,12 @@ def main(): if not isinstance(part_element, dict): continue # Skip if part_element is not a dict - # Save 'key' and 'file' values to variables - # These variables will be overwritten in each iteration - # if multiple parts exist. part_key = part_element.get('key') part_file = part_element.get('file') if part_key is not None: names[part_key] = part_file - - # At this point, part_key and part_file are available. - # The user has not specified what to do with them yet. - # For example, to print them: - # if part_key and part_file: - # print(f"Found part: key='{part_key}', file='{part_file}'") + print("\nProcessed data (truncated values):")