Revert "try change type to TypeAlias"

This reverts commit e0a8f04766.
This commit is contained in:
Swapna Lekkala 2025-09-08 14:40:31 -07:00
parent e0a8f04766
commit 9bfa8d4187
2 changed files with 3 additions and 4 deletions

View file

@ -11,7 +11,7 @@ import threading
from collections.abc import Callable, Coroutine, Iterable
from datetime import UTC, datetime
from enum import Enum
from typing import Any, TypeAlias
from typing import Any
from pydantic import BaseModel
@ -30,8 +30,8 @@ class JobStatus(Enum):
completed = "completed"
JobID: TypeAlias = str
JobType: TypeAlias = str
type JobID = str
type JobType = str
class JobArtifact(BaseModel):