From f29309c97a514fc61e5d12bd672cce7bd53aee09 Mon Sep 17 00:00:00 2001 From: han-lab Date: Thu, 9 May 2024 17:38:26 -0700 Subject: [PATCH] feat: remove unused Stage_2_noLick --- code/aind_auto_train/schema/task.py | 1 - 1 file changed, 1 deletion(-) diff --git a/code/aind_auto_train/schema/task.py b/code/aind_auto_train/schema/task.py index 587cfa3..446d91a 100644 --- a/code/aind_auto_train/schema/task.py +++ b/code/aind_auto_train/schema/task.py @@ -31,7 +31,6 @@ class TrainingStage(str, Enum): STAGE_1_WARMUP = "Stage 1 w/warmup" # Stage 1 with warmup (classical Stage 1.1 + 1.2) STAGE_1 = "Stage 1" # Stage 1 without warmup (classical Stage 1.2) STAGE_2 = "Stage 2" - STAGE_2_noLick = 'Stage 2 noLlick' STAGE_3 = "Stage 3" STAGE_4 = "Stage 4" STAGE_5 = "Stage 5"