mirror of
https://github.com/home-assistant/core.git
synced 2026-08-21 13:50:31 +01:00
9 lines
357 B
Python
9 lines
357 B
Python
"""Home Assistant scripts."""
|
|
|
|
from probatio.compat import install_as_voluptuous
|
|
|
|
# Scripts such as hassfest (and the libraries they import) use voluptuous. Alias it
|
|
# to probatio before anything imports it, the same as homeassistant/__init__.py does
|
|
# for the application itself. This must run before the first `import voluptuous`.
|
|
install_as_voluptuous()
|