style: Fix linting issues in my_models.py

This commit is contained in:
Paul Gauthier (aider) 2024-12-13 13:22:59 -08:00
parent c8894bcead
commit 8c10cb6230

View file

@ -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)