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
|
@ -96,7 +96,7 @@ class RovaSensor(Entity):
|
|||
@property
|
||||
def name(self):
|
||||
"""Return the name."""
|
||||
return "{}_{}".format(self.platform_name, self.sensor_key)
|
||||
return f"{self.platform_name}_{self.sensor_key}"
|
||||
|
||||
@property
|
||||
def icon(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue