style: Remove trailing whitespace and standardize string quotes

This commit is contained in:
Paul Gauthier (aider) 2025-03-20 14:23:07 -07:00
parent a8744708a0
commit 291c4eb258

View file

@ -209,7 +209,7 @@ def get_badges_html():
aider_percent_rounded = round(percentage)
# Generate HTML badges
html = f'''<a href="https://github.com/Aider-AI/aider" class="github-badge badge-stars" title="{GITHUB_STARS_TOOLTIP}">
html = f"""<a href="https://github.com/Aider-AI/aider" class="github-badge badge-stars" title="{GITHUB_STARS_TOOLTIP}">
<span class="badge-label"> GitHub Stars</span>
<span class="badge-value">{stars_formatted}</span>
</a>
@ -228,7 +228,7 @@ def get_badges_html():
<a href="/HISTORY.html" class="github-badge badge-coded" title="{SINGULARITY_TOOLTIP}">
<span class="badge-label">🔄 Singularity</span>
<span class="badge-value">{aider_percent_rounded}%</span>
</a>'''
</a>"""
return html