Sort imports according to PEP8 for components starting with "U" (#29779)
* use isort to sort imports for components starting with 'u' * add 'pylint: disable=import-error' to the right place
This commit is contained in:
parent
80c344d3a8
commit
e37443f10c
13 changed files with 55 additions and 56 deletions
|
@ -3,15 +3,15 @@ import socket
|
|||
import unittest
|
||||
from unittest import mock
|
||||
|
||||
import pytest
|
||||
import requests
|
||||
from uvcclient import camera
|
||||
from uvcclient import nvr
|
||||
from uvcclient import camera, nvr
|
||||
|
||||
from homeassistant.components.uvc import camera as uvc
|
||||
from homeassistant.exceptions import PlatformNotReady
|
||||
from homeassistant.setup import setup_component
|
||||
from homeassistant.components.uvc import camera as uvc
|
||||
|
||||
from tests.common import get_test_home_assistant
|
||||
import pytest
|
||||
|
||||
|
||||
class TestUVCSetup(unittest.TestCase):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue