-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove the last references to dyson_cloud to fix "camera" log entry (#55
- Loading branch information
Showing
5 changed files
with
11 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +0,0 @@ | ||
"""Support for Dyson cloud account.""" | ||
|
||
import asyncio | ||
import logging | ||
from functools import partial | ||
|
||
from homeassistant.exceptions import ConfigEntryNotReady | ||
from ..vendor.libdyson.cloud.account import DysonAccountCN | ||
from ..vendor.libdyson.cloud.device_info import DysonDeviceInfo | ||
from ..vendor.libdyson.const import DEVICE_TYPE_360_EYE | ||
from ..vendor.libdyson.discovery import DysonDiscovery | ||
from ..vendor.libdyson.dyson_device import DysonDevice | ||
from ..vendor.libdyson.exceptions import DysonException, DysonNetworkError | ||
from homeassistant.config_entries import ConfigEntry, SOURCE_DISCOVERY | ||
from homeassistant.const import CONF_HOST, EVENT_HOMEASSISTANT_STOP | ||
from homeassistant.core import HomeAssistant, callback | ||
from homeassistant.helpers.entity import Entity | ||
from homeassistant.components.zeroconf import async_get_instance | ||
from ..vendor.libdyson.cloud import DysonAccount | ||
from custom_components.dyson_local import DOMAIN as DYSON_LOCAL_DOMAIN | ||
|
||
from .const import CONF_AUTH, CONF_REGION, DATA_ACCOUNT, DATA_DEVICES, DOMAIN | ||
|
||
_LOGGER = logging.getLogger(__name__) | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
DOMAIN = "dyson_cloud" | ||
|
||
CONF_REGION = "region" | ||
CONF_AUTH = "auth" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters