fix: Update double quotes to single
All checks were successful
Build Docker / BuildImage (push) Successful in 32s

This commit is contained in:
Nathan Woodburn 2024-12-04 20:20:05 +11:00
parent 1a5cac57eb
commit 376f79370f
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1

View File

@ -98,7 +98,7 @@ def index():
tokens = getTokens()
solValue = getSolValue()
pie_chart_data = [(token['symbol'].upper(), token['value'], f"{token['name']}: ${"{:.2f}".format(token['value'])}") for token in tokens]
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)}"))
return render_template("index.html", value=tokenValue, supply=tokenSupply, pie_chart=pie_chart_data)