mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-29 08:44:59 +00:00
style: Fix linting issues in my_models.py
This commit is contained in:
parent
c8894bcead
commit
8c10cb6230
1 changed files with 8 additions and 6 deletions
|
@ -78,12 +78,14 @@ def format_html_table(model_stats):
|
||||||
|
|
||||||
# Add note about redacted models if any are present
|
# Add note about redacted models if any are present
|
||||||
if any("REDACTED" in model for model in model_stats.keys()):
|
if any("REDACTED" in model for model in model_stats.keys()):
|
||||||
html.extend([
|
html.extend(
|
||||||
|
[
|
||||||
"",
|
"",
|
||||||
"{: .note :}",
|
"{: .note :}",
|
||||||
"Some models show as REDACTED, because they are new or unpopular models.",
|
"Some models show as REDACTED, because they are new or unpopular models.",
|
||||||
"Aider's analytics only records the names of \"well known\" LLMs."
|
'Aider\'s analytics only records the names of "well known" LLMs.',
|
||||||
])
|
]
|
||||||
|
)
|
||||||
|
|
||||||
return "\n".join(html)
|
return "\n".join(html)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue