String formatting and max line length - Part 1 (#84390)

Co-authored-by: Erik Montnemery <erik@montnemery.com>
This commit is contained in:
Franck Nijhof 2022-12-22 10:12:50 +01:00 committed by GitHub
parent 41341c76cf
commit b0cee0bc46
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
98 changed files with 532 additions and 237 deletions

View file

@ -261,7 +261,10 @@ class RequirementsManager:
for req in missing:
if req in self.install_failure_history:
_LOGGER.info(
"Multiple attempts to install %s failed, install will be retried after next configuration check or restart",
(
"Multiple attempts to install %s failed, install will be"
" retried after next configuration check or restart"
),
req,
)
raise RequirementsNotFound(integration, [req])