Update ordering (#21013)

pull/21021/head
Fabian Affolter 2019-02-12 21:44:30 +01:00 committed by GitHub
parent 80442e655d
commit d795410b27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 5 deletions

View File

@ -1,4 +1,9 @@
"""System health component."""
"""
System health component.
For more details about this component, please refer to the documentation at
https://www.home-assistant.io/components/system_health/
"""
import asyncio
from collections import OrderedDict
import logging
@ -7,15 +12,17 @@ from typing import Callable, Dict
import async_timeout
import voluptuous as vol
from homeassistant.core import callback
from homeassistant.loader import bind_hass
from homeassistant.helpers.typing import HomeAssistantType, ConfigType
from homeassistant.components import websocket_api
from homeassistant.core import callback
from homeassistant.helpers.typing import ConfigType, HomeAssistantType
from homeassistant.loader import bind_hass
_LOGGER = logging.getLogger(__name__)
DEPENDENCIES = ['http']
DOMAIN = 'system_health'
INFO_CALLBACK_TIMEOUT = 5
_LOGGER = logging.getLogger(__name__)
@bind_hass