Use literal string interpolation in integrations N-Q (f-strings) (#26391)

This commit is contained in:
Franck Nijhof 2019-09-03 20:35:00 +02:00 committed by Paulus Schoutsen
parent 330ae0d885
commit 1c5e0123c9
62 changed files with 103 additions and 113 deletions

View file

@ -152,7 +152,7 @@ class NetatmoBinarySensor(BinarySensorDevice):
self._home = home
self._timeout = timeout
if home:
self._name = "{} / {}".format(home, camera_name)
self._name = f"{home} / {camera_name}"
else:
self._name = camera_name
if module_name: