mirror of
https://github.com/home-assistant/core.git
synced 2025-07-25 14:17:45 +00:00
Add imports
This commit is contained in:
parent
a0bcd33b71
commit
333e3ba822
@ -2,9 +2,15 @@
|
|||||||
from datetime import timedelta
|
from datetime import timedelta
|
||||||
import logging
|
import logging
|
||||||
import requests
|
import requests
|
||||||
|
|
||||||
|
import voluptuous as vol
|
||||||
|
|
||||||
from homeassistant.helpers.entity import Entity
|
from homeassistant.helpers.entity import Entity
|
||||||
|
from homeassistant.helpers.config_validation import ensure_list
|
||||||
from homeassistant.util import Throttle
|
from homeassistant.util import Throttle
|
||||||
from homeassistant.const import (CONF_API_KEY, TEMP_FAHRENHEIT, TEMP_CELSIUS)
|
from homeassistant.const import (CONF_PLATFORM, CONF_MONITORED_CONDITIONS,
|
||||||
|
CONF_API_KEY, TEMP_FAHRENHEIT, TEMP_CELSIUS,
|
||||||
|
STATE_UNKNOWN)
|
||||||
|
|
||||||
CONF_PWS_ID = 'pws_id'
|
CONF_PWS_ID = 'pws_id'
|
||||||
_URLCONST = '/conditions/q/pws:'
|
_URLCONST = '/conditions/q/pws:'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user