Missing "f" for f-string

This commit is contained in:
Kumi 2022-10-24 15:58:35 +00:00
parent b59707d3a7
commit 77f5e328a5
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -142,7 +142,7 @@ for section, settings in filter(lambda x: x[0] != "DEFAULT", config.items()):
product, platform, currency=currency, region=region, edition=edition)
gauge = Gauge(
f"allkeyshop_{AllKeyShop.ProductPageRequest.to_slug(name).replace('-', '_')}_{currency}", "Best price for {name}")
f"allkeyshop_{AllKeyShop.ProductPageRequest.to_slug(name).replace('-', '_')}_{currency}", f"Best price for {name}")
gauges.append((gauge, aks))
except Exception as e: