mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-21 21:04:59 +00:00
style: Remove trailing whitespace
This commit is contained in:
parent
83c599e741
commit
2d3162a90b
1 changed files with 15 additions and 14 deletions
|
@ -474,13 +474,14 @@ def get_testimonials_js():
|
||||||
if len(author_parts) > 1:
|
if len(author_parts) > 1:
|
||||||
author = author_parts[1].strip()
|
author = author_parts[1].strip()
|
||||||
|
|
||||||
testimonials.append({
|
testimonials.append(
|
||||||
"text": quote_text,
|
{"text": quote_text, "author": author, "link": link}
|
||||||
"author": author,
|
)
|
||||||
"link": link
|
|
||||||
})
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print(f"Error parsing testimonial line: {line}. Error: {e}", file=sys.stderr)
|
print(
|
||||||
|
f"Error parsing testimonial line: {line}. Error: {e}",
|
||||||
|
file=sys.stderr,
|
||||||
|
)
|
||||||
continue
|
continue
|
||||||
|
|
||||||
# Format as JavaScript array with script tags
|
# Format as JavaScript array with script tags
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue