From 13b3e75d0e328d30481fc315cd131738fe1e4a2e Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Sun, 20 Apr 2025 11:11:01 -0700 Subject: [PATCH] style: Apply linting to clean_metadata.py --- scripts/clean_metadata.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/scripts/clean_metadata.py b/scripts/clean_metadata.py index 73ba2b713..c1031857b 100755 --- a/scripts/clean_metadata.py +++ b/scripts/clean_metadata.py @@ -192,14 +192,10 @@ def main(): litellm_json_lines = json.dumps( litellm_entry_copy, indent=4, sort_keys=True ).splitlines() - aider_json_lines = json.dumps( - aider_entry_copy, indent=4, sort_keys=True - ).splitlines() + aider_json_lines = json.dumps(aider_entry_copy, indent=4, sort_keys=True).splitlines() # Remove the dummy key line before diffing - litellm_json_filtered = [ - line for line in litellm_json_lines if dummy_key not in line - ] + litellm_json_filtered = [line for line in litellm_json_lines if dummy_key not in line] aider_json_filtered = [line for line in aider_json_lines if dummy_key not in line] diff = difflib.unified_diff(