mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-24 23:07:44 +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
@@ -66,12 +66,12 @@ class SmartThingsBinarySensor(SmartThingsEntity, BinarySensorDevice):
|
||||
@property
|
||||
def name(self) -> str:
|
||||
"""Return the name of the binary sensor."""
|
||||
return "{} {}".format(self._device.label, self._attribute)
|
||||
return f"{self._device.label} {self._attribute}"
|
||||
|
||||
@property
|
||||
def unique_id(self) -> str:
|
||||
"""Return a unique ID."""
|
||||
return "{}.{}".format(self._device.device_id, self._attribute)
|
||||
return f"{self._device.device_id}.{self._attribute}"
|
||||
|
||||
@property
|
||||
def is_on(self):
|
||||
|
||||
Reference in New Issue
Block a user