Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
bowenliang123 committed Nov 20, 2024
1 parent 8ea87b3 commit 684bff7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/services/feature_service.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from enum import Enum
from enum import StrEnum

from pydantic import BaseModel, ConfigDict

Expand All @@ -22,7 +22,7 @@ class LimitationModel(BaseModel):
limit: int = 0


class LicenseStatus(str, Enum):
class LicenseStatus(StrEnum):
NONE = "none"
INACTIVE = "inactive"
ACTIVE = "active"
Expand Down

0 comments on commit 684bff7

Please sign in to comment.