mirror of
https://github.com/elisspace/core.git
synced 2026-09-14 06:57:07 +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
@@ -73,7 +73,7 @@ class RingBinarySensor(BinarySensorDevice):
|
||||
)
|
||||
self._device_class = SENSOR_TYPES.get(self._sensor_type)[2]
|
||||
self._state = None
|
||||
self._unique_id = "{}-{}".format(self._data.id, self._sensor_type)
|
||||
self._unique_id = f"{self._data.id}-{self._sensor_type}"
|
||||
|
||||
@property
|
||||
def name(self):
|
||||
|
||||
@@ -56,7 +56,7 @@ class RingLight(Light):
|
||||
@property
|
||||
def name(self):
|
||||
"""Name of the light."""
|
||||
return "{} light".format(self._device.name)
|
||||
return f"{self._device.name} light"
|
||||
|
||||
@property
|
||||
def unique_id(self):
|
||||
|
||||
@@ -121,7 +121,7 @@ class RingSensor(Entity):
|
||||
)
|
||||
self._state = None
|
||||
self._tz = str(hass.config.time_zone)
|
||||
self._unique_id = "{}-{}".format(self._data.id, self._sensor_type)
|
||||
self._unique_id = f"{self._data.id}-{self._sensor_type}"
|
||||
|
||||
async def async_added_to_hass(self):
|
||||
"""Register callbacks."""
|
||||
|
||||
@@ -38,7 +38,7 @@ class BaseRingSwitch(SwitchDevice):
|
||||
"""Initialize the switch."""
|
||||
self._device = device
|
||||
self._device_type = device_type
|
||||
self._unique_id = "{}-{}".format(self._device.id, self._device_type)
|
||||
self._unique_id = f"{self._device.id}-{self._device_type}"
|
||||
|
||||
async def async_added_to_hass(self):
|
||||
"""Register callbacks."""
|
||||
@@ -53,7 +53,7 @@ class BaseRingSwitch(SwitchDevice):
|
||||
@property
|
||||
def name(self):
|
||||
"""Name of the device."""
|
||||
return "{} {}".format(self._device.name, self._device_type)
|
||||
return f"{self._device.name} {self._device_type}"
|
||||
|
||||
@property
|
||||
def unique_id(self):
|
||||
|
||||
Reference in New Issue
Block a user