mirror of
https://github.com/micahqcade/custom_vesync.git
synced 2025-06-26 13:07:50 +02:00
add trunk linting.
This commit is contained in:
@ -1,9 +1,8 @@
|
||||
"""Config flow utilities."""
|
||||
from collections import OrderedDict
|
||||
import logging
|
||||
from collections import OrderedDict
|
||||
|
||||
import voluptuous as vol
|
||||
|
||||
from homeassistant import config_entries
|
||||
from homeassistant.components import dhcp
|
||||
from homeassistant.const import CONF_PASSWORD, CONF_USERNAME
|
||||
|
@ -1,17 +1,15 @@
|
||||
"""VeSync API Device Library."""
|
||||
|
||||
from itertools import chain
|
||||
import logging
|
||||
import re
|
||||
import time
|
||||
from itertools import chain
|
||||
from typing import Tuple
|
||||
|
||||
from . import (
|
||||
vesyncbulb as bulb_mods,
|
||||
vesyncfan as fan_mods,
|
||||
vesyncoutlet as outlet_mods,
|
||||
vesyncswitch as switch_mods,
|
||||
)
|
||||
from . import vesyncbulb as bulb_mods
|
||||
from . import vesyncfan as fan_mods
|
||||
from . import vesyncoutlet as outlet_mods
|
||||
from . import vesyncswitch as switch_mods
|
||||
from .helpers import Helpers
|
||||
from .vesyncbasedevice import VeSyncBaseDevice
|
||||
|
||||
|
@ -1,8 +1,8 @@
|
||||
"""Etekcity Smart Light Bulb."""
|
||||
|
||||
from abc import ABCMeta, abstractmethod
|
||||
import json
|
||||
import logging
|
||||
from abc import ABCMeta, abstractmethod
|
||||
from typing import Dict, Union
|
||||
|
||||
from .helpers import Helpers as helpers
|
||||
|
@ -1,9 +1,9 @@
|
||||
"""Etekcity Outlets."""
|
||||
|
||||
from abc import ABCMeta, abstractmethod
|
||||
import json
|
||||
import logging
|
||||
import time
|
||||
from abc import ABCMeta, abstractmethod
|
||||
|
||||
from .helpers import Helpers
|
||||
from .vesyncbasedevice import VeSyncBaseDevice
|
||||
|
@ -1,8 +1,8 @@
|
||||
"""Classes for VeSync Switch Devices."""
|
||||
|
||||
from abc import ABCMeta, abstractmethod
|
||||
import json
|
||||
import logging
|
||||
from abc import ABCMeta, abstractmethod
|
||||
from typing import Dict, Union
|
||||
|
||||
from .helpers import Helpers as helpers
|
||||
|
Reference in New Issue
Block a user