From 3e097b02ee7715984c38b69a9ce0dd5c454c6273 Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Mon, 21 Jul 2025 13:15:11 -0400 Subject: [PATCH] containers: expose WEANING_BASELINE enum value WEANING_BASELINE is the same as BASELINE, but without motion. --- python_snoo/containers.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python_snoo/containers.py b/python_snoo/containers.py index d9f5263..a43b1e0 100644 --- a/python_snoo/containers.py +++ b/python_snoo/containers.py @@ -8,6 +8,7 @@ class SnooLevels(StrEnum): baseline = "BASELINE" + weaning_baseline = "WEANING_BASELINE" level1 = "LEVEL1" level2 = "LEVEL2" level3 = "LEVEL3"