Use literal string interpolation in integrations R-S (f-strings) (#26392)
This commit is contained in:
parent
7203027cbf
commit
445c741b30
69 changed files with 129 additions and 149 deletions
|
@ -58,7 +58,7 @@ class StreamlabsAwayMode(BinarySensorDevice):
|
|||
@property
|
||||
def name(self):
|
||||
"""Return the name for away mode."""
|
||||
return "{} {}".format(self._location_name, NAME_AWAY_MODE)
|
||||
return f"{self._location_name} {NAME_AWAY_MODE}"
|
||||
|
||||
@property
|
||||
def is_on(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue