Spelling fixes (#16150)

This commit is contained in:
Ville Skyttä 2018-08-23 23:56:18 +03:00 committed by Fabian Affolter
parent 156c6e2025
commit 89d856d147
3 changed files with 7 additions and 7 deletions

View File

@ -10,12 +10,12 @@ _LOGGER = logging.getLogger(__name__)
def setup(hass, config):
"""Setup the insteon_local component.
"""Set up the insteon_local component.
This component is depreciated as of release 0.77 and should be removed in
This component is deprecated as of release 0.77 and should be removed in
release 0.90.
"""
_LOGGER.warning('The insteon_local comonent has been replaced by '
_LOGGER.warning('The insteon_local component has been replaced by '
'the insteon component')
_LOGGER.warning('Please see https://home-assistant.io/components/insteon')

View File

@ -12,12 +12,12 @@ _LOGGER = logging.getLogger(__name__)
@asyncio.coroutine
def async_setup(hass, config):
"""Setup the insteon_plm component.
"""Set up the insteon_plm component.
This component is depreciated as of release 0.77 and should be removed in
This component is deprecated as of release 0.77 and should be removed in
release 0.90.
"""
_LOGGER.warning('The insteon_plm comonent has been replaced by '
_LOGGER.warning('The insteon_plm component has been replaced by '
'the insteon component')
_LOGGER.warning('Please see https://home-assistant.io/components/insteon')

View File

@ -20,7 +20,7 @@ EMPTY_CONFIG = []
async def async_setup_auth(hass, aiohttp_client, provider_configs=BASE_CONFIG,
module_configs=EMPTY_CONFIG, setup_api=False):
"""Helper to set up authentication and create a HTTP client."""
"""Helper to set up authentication and create an HTTP client."""
hass.auth = await auth.auth_manager_from_config(
hass, provider_configs, module_configs)
ensure_auth_manager_loaded(hass.auth)