From 8c10cb623038be46556c27dbaaa4c55d4895cdd3 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Fri, 13 Dec 2024 13:22:59 -0800 Subject: [PATCH] style: Fix linting issues in my_models.py --- scripts/my_models.py | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/scripts/my_models.py b/scripts/my_models.py index 3bbfb4c78..82b41ddb2 100755 --- a/scripts/my_models.py +++ b/scripts/my_models.py @@ -78,12 +78,14 @@ def format_html_table(model_stats): # Add note about redacted models if any are present if any("REDACTED" in model for model in model_stats.keys()): - html.extend([ - "", - "{: .note :}", - "Some models show as REDACTED, because they are new or unpopular models.", - "Aider's analytics only records the names of \"well known\" LLMs." - ]) + html.extend( + [ + "", + "{: .note :}", + "Some models show as REDACTED, because they are new or unpopular models.", + 'Aider\'s analytics only records the names of "well known" LLMs.', + ] + ) return "\n".join(html)