From ae8f810a471528b07d81d41429c6084c25096aae Mon Sep 17 00:00:00 2001 From: natthan-pigoux Date: Tue, 7 Jan 2025 09:40:32 +0100 Subject: [PATCH] fix: remove str typing of SBType --- diracx-core/src/diracx/core/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/diracx-core/src/diracx/core/models.py b/diracx-core/src/diracx/core/models.py index 4e280a7c..6361818a 100644 --- a/diracx-core/src/diracx/core/models.py +++ b/diracx-core/src/diracx/core/models.py @@ -134,5 +134,5 @@ class SandboxInfo(BaseModel): class SandboxType(StrEnum): - Input: str = "Input" - Output: str = "Output" + Input = "Input" + Output = "Output"