Use literal string interpolation in integrations E-G (f-strings) (#26379)

This commit is contained in:
Franck Nijhof 2019-09-03 17:10:56 +02:00 committed by Pascal Vizeli
parent 6a24d893c8
commit fa79ef1220
45 changed files with 87 additions and 92 deletions

View file

@ -57,7 +57,7 @@ class BanSensor(Entity):
def __init__(self, name, jail, log_parser):
"""Initialize the sensor."""
self._name = "{} {}".format(name, jail)
self._name = f"{name} {jail}"
self.jail = jail
self.ban_dict = {STATE_CURRENT_BANS: [], STATE_ALL_BANS: []}
self.last_ban = None