mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-27 00:09:08 +01: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):
|
||||
|
||||
Reference in New Issue
Block a user