From d84c755ee8a03d3459f861d944f3b1eec5f7767d Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Wed, 12 Mar 2025 13:28:06 -0700 Subject: [PATCH] style: Apply linter formatting to redact-cast.py script --- scripts/redact-cast.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/redact-cast.py b/scripts/redact-cast.py index 67ffaee9d..4d679223e 100755 --- a/scripts/redact-cast.py +++ b/scripts/redact-cast.py @@ -46,8 +46,8 @@ def process_file(input_path, output_path): if is_first_line: try: header = json.loads(line) - if 'env' in header: - del header['env'] + if "env" in header: + del header["env"] outfile.write(json.dumps(header) + "\n") except json.JSONDecodeError: # If we can't parse the header, keep it as is