From 8da0dc9a1af361bcd645c5a71a4e0fa6d47a627c Mon Sep 17 00:00:00 2001 From: Mike Degatano Date: Fri, 15 Nov 2024 20:15:53 +0000 Subject: [PATCH] alphabetical order --- aiohasupervisor/models/addons.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/aiohasupervisor/models/addons.py b/aiohasupervisor/models/addons.py index 3815103..67293c9 100644 --- a/aiohasupervisor/models/addons.py +++ b/aiohasupervisor/models/addons.py @@ -102,11 +102,11 @@ class AddonState(StrEnum): class AddonStartup(StrEnum): """AddonStartup type.""" - INITIALIZE = "initialize" - SYSTEM = "system" - SERVICES = "services" APPLICATION = "application" + INITIALIZE = "initialize" ONCE = "once" + SERVICES = "services" + SYSTEM = "system" # --- OBJECTS ----