From 46371a9e875e360ca19cecbd8091b244faff3625 Mon Sep 17 00:00:00 2001 From: Erik Montnemery Date: Wed, 7 Apr 2021 11:12:31 +0200 Subject: [PATCH] Fix whitespace error in cast (#48763) --- homeassistant/components/cast/media_player.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/cast/media_player.py b/homeassistant/components/cast/media_player.py index 25b2674821d..b6ca8dd0728 100644 --- a/homeassistant/components/cast/media_player.py +++ b/homeassistant/components/cast/media_player.py @@ -186,7 +186,7 @@ class CastDevice(MediaPlayerEntity): ) self.hass.bus.async_listen_once(EVENT_HOMEASSISTANT_STOP, self._async_stop) self.async_set_cast_info(self._cast_info) - # asyncio.create_task is used to avoid delaying startup wrapup if the device + # asyncio.create_task is used to avoid delaying startup wrapup if the device # is discovered already during startup but then fails to respond asyncio.create_task( async_create_catching_coro(self.async_connect_to_chromecast())