fix: Forgot another incorrect double quote
All checks were successful
Build Docker / BuildImage (push) Successful in 33s

This commit is contained in:
Nathan Woodburn 2024-12-04 20:27:21 +11:00
parent 376f79370f
commit 3060314ba5
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1
2 changed files with 2 additions and 1 deletions

View File

@ -99,7 +99,7 @@ def index():
solValue = getSolValue()
pie_chart_data = [(token['symbol'].upper(), token['value'], f"{token['name']}: ${'{:.2f}'.format(token['value'])}") for token in tokens]
pie_chart_data.append(("SOL", solValue, f"Solana: ${"{:.2f}".format(solValue)}"))
pie_chart_data.append(("SOL", solValue, f"Solana: ${'{:.2f}'.format(solValue)}"))
return render_template("index.html", value=tokenValue, supply=tokenSupply, pie_chart=pie_chart_data)

File diff suppressed because one or more lines are too long