String formatting and max line length - Part 4 (#84445)

Co-authored-by: jjlawren <jjlawren@users.noreply.github.com>
This commit is contained in:
Franck Nijhof 2022-12-23 13:27:27 +01:00 committed by GitHub
parent a8f09b4063
commit 94755a5773
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
44 changed files with 267 additions and 136 deletions

View file

@ -36,8 +36,9 @@ async def async_setup_services(hass):
async def async_scan_clients_service(_: ServiceCall) -> None:
_LOGGER.warning(
"This service is deprecated in favor of the scan_clients button entity. "
"Service calls will still work for now but the service will be removed in a future release"
"This service is deprecated in favor of the scan_clients button entity."
" Service calls will still work for now but the service will be removed in"
" a future release"
)
for server_id in hass.data[DOMAIN][SERVERS]:
async_dispatcher_send(hass, PLEX_UPDATE_PLATFORMS_SIGNAL.format(server_id))
@ -103,7 +104,8 @@ def get_plex_server(hass, plex_server_name=None, plex_server_id=None):
friendly_names = [x.friendly_name for x in plex_servers]
raise HomeAssistantError(
f"Multiple Plex servers configured, choose with 'plex_server' key: {friendly_names}"
"Multiple Plex servers configured, choose with 'plex_server' key:"
f" {friendly_names}"
)