From b2d541f1ebb0abf25674b2858266d4fa66667b64 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Sun, 20 Apr 2025 11:02:00 -0700 Subject: [PATCH] style: Fix line length in clean_metadata.py for flake8 compliance --- scripts/clean_metadata.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/clean_metadata.py b/scripts/clean_metadata.py index 4bd80925e..6ae06a3eb 100644 --- a/scripts/clean_metadata.py +++ b/scripts/clean_metadata.py @@ -75,7 +75,8 @@ def main(): print("(No differences found)") else: for line in diff_lines: - # Add color for better readability (optional, requires a library like 'termcolor' or manual ANSI codes) + # Add color for better readability (optional, requires a library + # like 'termcolor' or manual ANSI codes) # Simple +/- indication is standard for diffs print(line) print("\n" + "=" * 40 + "\n")