mirror of
https://github.com/home-assistant/core.git
synced 2025-12-24 12:59:34 +00:00
Use literal string interpolation in integrations R-S (f-strings) (#26392)
This commit is contained in:
committed by
Pascal Vizeli
parent
7203027cbf
commit
445c741b30
@@ -80,7 +80,7 @@ class Sense(Entity):
|
||||
def __init__(self, data, name, sensor_type, is_production, update_call):
|
||||
"""Initialize the Sense sensor."""
|
||||
name_type = PRODUCTION_NAME if is_production else CONSUMPTION_NAME
|
||||
self._name = "{} {}".format(name, name_type)
|
||||
self._name = f"{name} {name_type}"
|
||||
self._data = data
|
||||
self._sensor_type = sensor_type
|
||||
self.update_sensor = update_call
|
||||
|
||||
Reference in New Issue
Block a user