fix(P7.1): remove TaskType.TASK from models.py + fix milestone task defaults (issue/pending)

This commit is contained in:
zhi
2026-03-17 23:01:02 +00:00
parent 8e38d4cf4d
commit ec91a15f65
2 changed files with 3 additions and 4 deletions

View File

@@ -7,7 +7,7 @@ import enum
class TaskType(str, enum.Enum):
"""Task type enum'issue' is a subtype of task, not the other way around."""
"""Task type enum."""
ISSUE = "issue"
MAINTENANCE = "maintenance"
RESEARCH = "research"
@@ -15,7 +15,6 @@ class TaskType(str, enum.Enum):
STORY = "story"
TEST = "test"
RESOLUTION = "resolution"
TASK = "task"
class TaskStatus(str, enum.Enum):