core/homeassistant/components/openexchangerates/const.py

8 lines
214 B
Python
Raw Normal View History

"""Provide common constants for Open Exchange Rates."""
from datetime import timedelta
import logging
DOMAIN = "openexchangerates"
LOGGER = logging.getLogger(__package__)
BASE_UPDATE_INTERVAL = timedelta(hours=2)