mirror of
https://github.com/Aider-AI/aider
synced 2026-04-25 17:15:07 +02:00
style: Apply linting to clean_metadata.py
This commit is contained in:
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user