From 89d856d147425122fcab0d0d1c582cdf8b3dc8ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Thu, 23 Aug 2018 23:56:18 +0300 Subject: [PATCH] Spelling fixes (#16150) --- homeassistant/components/insteon_local.py | 6 +++--- homeassistant/components/insteon_plm.py | 6 +++--- tests/components/auth/__init__.py | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/homeassistant/components/insteon_local.py b/homeassistant/components/insteon_local.py index 1dfb0c6e4cb..003714d0f94 100644 --- a/homeassistant/components/insteon_local.py +++ b/homeassistant/components/insteon_local.py @@ -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') diff --git a/homeassistant/components/insteon_plm.py b/homeassistant/components/insteon_plm.py index bd41819a0fa..b89e5679a63 100644 --- a/homeassistant/components/insteon_plm.py +++ b/homeassistant/components/insteon_plm.py @@ -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') diff --git a/tests/components/auth/__init__.py b/tests/components/auth/__init__.py index 224f9b16403..4c357fc4db9 100644 --- a/tests/components/auth/__init__.py +++ b/tests/components/auth/__init__.py @@ -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)