1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 12:59:34 +00:00

Sort script actions (#108247)

This commit is contained in:
Erik Montnemery
2024-01-31 20:41:53 +01:00
committed by GitHub
parent cf6bcd63dd
commit 3ce4e53b32
2 changed files with 24 additions and 24 deletions

View File

@@ -259,14 +259,14 @@ def make_script_schema(
STATIC_VALIDATION_ACTION_TYPES = (
cv.SCRIPT_ACTION_ACTIVATE_SCENE,
cv.SCRIPT_ACTION_CALL_SERVICE,
cv.SCRIPT_ACTION_DELAY,
cv.SCRIPT_ACTION_WAIT_TEMPLATE,
cv.SCRIPT_ACTION_FIRE_EVENT,
cv.SCRIPT_ACTION_ACTIVATE_SCENE,
cv.SCRIPT_ACTION_VARIABLES,
cv.SCRIPT_ACTION_STOP,
cv.SCRIPT_ACTION_SET_CONVERSATION_RESPONSE,
cv.SCRIPT_ACTION_STOP,
cv.SCRIPT_ACTION_VARIABLES,
cv.SCRIPT_ACTION_WAIT_TEMPLATE,
)