mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-20 12:24:59 +00:00
fix: Remove unnecessary f-string in testimonials formatting
This commit is contained in:
parent
ef4c40c692
commit
73c46e8e24
1 changed files with 1 additions and 1 deletions
|
@ -455,7 +455,7 @@ def get_testimonials_js():
|
|||
|
||||
js_array = "const testimonials = [\n"
|
||||
for i, t in enumerate(testimonials):
|
||||
js_array += f" {{\n"
|
||||
js_array += " {\n"
|
||||
js_array += f" text: \"{t['text']}\",\n"
|
||||
js_array += f" author: \"{t['author']}\",\n"
|
||||
js_array += f" link: \"{t['link']}\"\n"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue