mirror of
https://github.com/home-assistant/core.git
synced 2025-04-27 18:57:57 +00:00

* Fix config modules being imported in the event loop There was a late import in this integration because of the circular import. The code has been rearranged to avoid the circular imports * fixes * fixes * fix patching * make eager * remove unrelated change from this branch
6 lines
111 B
Python
6 lines
111 B
Python
"""Constants for config."""
|
|
|
|
ACTION_CREATE_UPDATE = "create_update"
|
|
ACTION_DELETE = "delete"
|
|
DOMAIN = "config"
|