use isort to sort imports for components starting with 'm' (#29772)

This commit is contained in:
Bas Nijholt 2019-12-09 14:20:40 +01:00 committed by Fabian Affolter
parent 8b39957c56
commit 710680d604
39 changed files with 167 additions and 156 deletions

View file

@ -2,18 +2,19 @@
import json
import logging
import os
from asynctest import patch
import pytest
from homeassistant.setup import async_setup_component
from homeassistant.components.device_tracker.legacy import (
YAML_DEVICES,
ENTITY_ID_FORMAT,
DOMAIN as DT_DOMAIN,
ENTITY_ID_FORMAT,
YAML_DEVICES,
)
from homeassistant.const import CONF_PLATFORM
from homeassistant.setup import async_setup_component
from tests.common import async_mock_mqtt_component, async_fire_mqtt_message
from tests.common import async_fire_mqtt_message, async_mock_mqtt_component
_LOGGER = logging.getLogger(__name__)