From 8c8e6075483ce6fe2f293c3bb54640b4c5f0d2ce Mon Sep 17 00:00:00 2001 From: Dermot Duffy Date: Thu, 17 Dec 2020 23:03:54 -0800 Subject: [PATCH] Alphabetize hyperion const.py (#44343) --- homeassistant/components/hyperion/const.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/homeassistant/components/hyperion/const.py b/homeassistant/components/hyperion/const.py index 6d61af0b66f..2bb9ec241e5 100644 --- a/homeassistant/components/hyperion/const.py +++ b/homeassistant/components/hyperion/const.py @@ -1,22 +1,22 @@ """Constants for Hyperion integration.""" -DOMAIN = "hyperion" + +CONF_AUTH_ID = "auth_id" +CONF_CREATE_TOKEN = "create_token" +CONF_INSTANCE = "instance" +CONF_ON_UNLOAD = "ON_UNLOAD" +CONF_PRIORITY = "priority" +CONF_ROOT_CLIENT = "ROOT_CLIENT" DEFAULT_NAME = "Hyperion" DEFAULT_ORIGIN = "Home Assistant" DEFAULT_PRIORITY = 128 -CONF_AUTH_ID = "auth_id" -CONF_CREATE_TOKEN = "create_token" -CONF_INSTANCE = "instance" -CONF_PRIORITY = "priority" +DOMAIN = "hyperion" -CONF_ROOT_CLIENT = "ROOT_CLIENT" -CONF_ON_UNLOAD = "ON_UNLOAD" +HYPERION_RELEASES_URL = "https://github.com/hyperion-project/hyperion.ng/releases" +HYPERION_VERSION_WARN_CUTOFF = "2.0.0-alpha.9" SIGNAL_INSTANCES_UPDATED = f"{DOMAIN}_instances_updated_signal." "{}" SIGNAL_INSTANCE_REMOVED = f"{DOMAIN}_instance_removed_signal." "{}" -HYPERION_VERSION_WARN_CUTOFF = "2.0.0-alpha.9" -HYPERION_RELEASES_URL = "https://github.com/hyperion-project/hyperion.ng/releases" - TYPE_HYPERION_LIGHT = "hyperion_light"