Use literal string interpolation in integrations B-D (f-strings) (#26378)
This commit is contained in:
parent
105461edb5
commit
6a24d893c8
52 changed files with 116 additions and 126 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue