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

Sort imports according to PEP8 for components starting with "A" (#29761)

This commit is contained in:
Bas Nijholt
2019-12-09 13:57:24 +01:00
committed by Franck Nijhof
parent 73de69896b
commit 96961b9bcc
35 changed files with 97 additions and 101 deletions

View File

@@ -1,15 +1,15 @@
"""The tests for the APNS component."""
import io
import unittest
from unittest.mock import Mock, patch, mock_open
from unittest.mock import Mock, mock_open, patch
from apns2.errors import Unregistered
import yaml
import homeassistant.components.notify as notify
from homeassistant.setup import setup_component
import homeassistant.components.apns.notify as apns
import homeassistant.components.notify as notify
from homeassistant.core import State
from homeassistant.setup import setup_component
from tests.common import assert_setup_component, get_test_home_assistant