Missing "f" for f-string
This commit is contained in:
parent
b59707d3a7
commit
77f5e328a5
1 changed files with 1 additions and 1 deletions
|
@ -142,7 +142,7 @@ for section, settings in filter(lambda x: x[0] != "DEFAULT", config.items()):
|
||||||
product, platform, currency=currency, region=region, edition=edition)
|
product, platform, currency=currency, region=region, edition=edition)
|
||||||
|
|
||||||
gauge = Gauge(
|
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))
|
gauges.append((gauge, aks))
|
||||||
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
|
|
Loading…
Reference in a new issue