Skip to content

Commit

Permalink
Merge branch 'master' of github.com:syssi/xiaomi_cooker
Browse files Browse the repository at this point in the history
  • Loading branch information
syssi committed Oct 29, 2020
2 parents d2b32f8 + 4595747 commit 8f125d5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 11 deletions.
19 changes: 9 additions & 10 deletions custom_components/xiaomi_miio_cooker/__init__.py
Original file line number Diff line number Diff line change
@@ -1,24 +1,23 @@
from collections import defaultdict
import asyncio
import logging
from collections import defaultdict
from datetime import timedelta
from functools import partial
import logging

import voluptuous as vol

import homeassistant.helpers.config_validation as cv
from homeassistant.helpers.entity import Entity
from homeassistant.helpers import discovery
import voluptuous as vol
from homeassistant.const import (
CONF_NAME,
ATTR_ENTITY_ID,
CONF_HOST,
CONF_TOKEN,
CONF_NAME,
CONF_SCAN_INTERVAL,
ATTR_ENTITY_ID,
CONF_TOKEN,
)
from homeassistant.exceptions import PlatformNotReady
from homeassistant.helpers.event import track_time_interval
from homeassistant.helpers import discovery
from homeassistant.helpers.dispatcher import dispatcher_send
from homeassistant.helpers.entity import Entity
from homeassistant.helpers.event import track_time_interval
from homeassistant.util.dt import utcnow

_LOGGER = logging.getLogger(__name__)
Expand Down
1 change: 0 additions & 1 deletion custom_components/xiaomi_miio_cooker/sensor.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import asyncio
import logging

from enum import Enum

from homeassistant.components.sensor import ENTITY_ID_FORMAT
Expand Down

0 comments on commit 8f125d5

Please sign in to comment.