Skip to content

Commit

Permalink
fix: remove str typing of SBType
Browse files Browse the repository at this point in the history
  • Loading branch information
fstagni committed Jan 10, 2025
1 parent 81e230d commit ba35fce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions diracx-core/src/diracx/core/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,5 +134,5 @@ class SandboxInfo(BaseModel):


class SandboxType(StrEnum):
Input: str = "Input"
Output: str = "Output"
Input = "Input"
Output = "Output"

0 comments on commit ba35fce

Please sign in to comment.