Remove unnecessary string literal concatenations (#30360)

This commit is contained in:
Ville Skyttä 2020-01-02 21:17:10 +02:00 committed by GitHub
parent cac750066a
commit e6388e186c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
183 changed files with 362 additions and 393 deletions

View file

@ -223,7 +223,7 @@ class BinarySensorTemplate(BinarySensorDevice):
):
# Common during HA startup - so just a warning
_LOGGER.warning(
"Could not render template %s, " "the state is unknown", self._name
"Could not render template %s, the state is unknown", self._name
)
return
_LOGGER.error("Could not render template %s: %s", self._name, ex)
@ -259,7 +259,7 @@ class BinarySensorTemplate(BinarySensorDevice):
):
# Common during HA startup - so just a warning
_LOGGER.warning(
"Could not render %s template %s," " the state is unknown.",
"Could not render %s template %s, the state is unknown.",
friendly_property_name,
self._name,
)