From 6656b5d973da485ff6f0cf9895489f6db2a92fa0 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Sun, 20 Apr 2025 11:03:44 -0700 Subject: [PATCH] style: Apply linting to clean_metadata.py --- scripts/clean_metadata.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/clean_metadata.py b/scripts/clean_metadata.py index d28e45420..d07c41003 100644 --- a/scripts/clean_metadata.py +++ b/scripts/clean_metadata.py @@ -101,7 +101,9 @@ def main(): f.write("\n") print(f"Successfully removed '{key}' and updated {aider_path}.") except Exception as e: - print(f"Error writing updated data to {aider_path} after removing {key}: {e}") + print( + f"Error writing updated data to {aider_path} after removing {key}: {e}" + ) # Exit or handle error appropriately? For now, just print. else: print(f"'{key}' not found in aider data (already removed?).")