1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 21:06:19 +00:00

use isort to sort imports according to PEP8 for demo (#29630)

This commit is contained in:
Bas Nijholt
2019-12-08 17:59:27 +01:00
committed by Fabian Affolter
parent a3b605bb7d
commit e4e9cdce73
25 changed files with 54 additions and 55 deletions

View File

@@ -5,11 +5,11 @@ from unittest.mock import patch
import pytest
import voluptuous as vol
import homeassistant.components.notify as notify
from homeassistant.setup import setup_component
import homeassistant.components.demo.notify as demo
import homeassistant.components.notify as notify
from homeassistant.core import callback
from homeassistant.helpers import discovery, script
from homeassistant.setup import setup_component
from tests.common import assert_setup_component, get_test_home_assistant
from tests.components.notify import common