Use literal string interpolation in integrations B-D (f-strings) (#26378)

This commit is contained in:
Franck Nijhof 2019-09-03 17:09:59 +02:00 committed by Pascal Vizeli
parent 105461edb5
commit 6a24d893c8
52 changed files with 116 additions and 126 deletions

View file

@ -95,7 +95,7 @@ class CurrencylayerSensor(Entity):
self.rest.update()
value = self.rest.data
if value is not None:
self._state = round(value["{}{}".format(self._base, self._quote)], 4)
self._state = round(value[f"{self._base}{self._quote}"], 4)
class CurrencylayerData: