Sort imports according to PEP8 for neato (#29724)
This commit is contained in:
parent
791dc5809f
commit
9df71ecae2
3 changed files with 4 additions and 4 deletions
|
@ -1,11 +1,11 @@
|
|||
"""Support for Neato botvac connected vacuum cleaners."""
|
||||
import asyncio
|
||||
import logging
|
||||
from datetime import timedelta
|
||||
import logging
|
||||
|
||||
import voluptuous as vol
|
||||
from pybotvac import Account, Neato, Vorwerk
|
||||
from pybotvac.exceptions import NeatoException, NeatoLoginException, NeatoRobotException
|
||||
import voluptuous as vol
|
||||
|
||||
from homeassistant.config_entries import SOURCE_IMPORT
|
||||
from homeassistant.const import CONF_PASSWORD, CONF_USERNAME
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
"""Tests for the Neato config flow."""
|
||||
import pytest
|
||||
from unittest.mock import patch
|
||||
|
||||
from pybotvac.exceptions import NeatoLoginException, NeatoRobotException
|
||||
import pytest
|
||||
|
||||
from homeassistant import data_entry_flow
|
||||
from homeassistant.components.neato import config_flow
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
"""Tests for the Neato init file."""
|
||||
import pytest
|
||||
from unittest.mock import patch
|
||||
|
||||
from pybotvac.exceptions import NeatoLoginException
|
||||
import pytest
|
||||
|
||||
from homeassistant.components.neato.const import CONF_VENDOR, NEATO_DOMAIN
|
||||
from homeassistant.const import CONF_PASSWORD, CONF_USERNAME
|
||||
|
|
Loading…
Add table
Reference in a new issue