hass-core/homeassistant/components/wiz/const.py
J. Nick Koston 342f5182b9
WiZ cleanups part 1 (#65746)
Co-authored-by: Franck Nijhof <frenck@frenck.nl>
2022-02-05 09:23:19 -06:00

13 lines
303 B
Python

"""Constants for the WiZ Platform integration."""
from pywizlight.exceptions import WizLightConnectionError, WizLightTimeOutError
DOMAIN = "wiz"
DEFAULT_NAME = "WiZ"
WIZ_EXCEPTIONS = (
OSError,
WizLightTimeOutError,
TimeoutError,
WizLightConnectionError,
ConnectionRefusedError,
)