Skip to content

Commit

Permalink
fix again
Browse files Browse the repository at this point in the history
  • Loading branch information
nathandf committed Sep 28, 2023
1 parent 6b2bb2b commit 7feeb54
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/engine/src/contrib/tapis/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,6 @@
from owe_python_sdk.schema import _EnumMeta


class EnumTapisTaskOutputType(str, Enum, metaclass=_EnumMeta):
TapisJob = "tapis_job"

class BaseTapisTaskOutput(BaseModel):
type: EnumTapisTaskOutputType

class TapisSystemFile(BaseModel):
mimeType: str = None
type: Literal["file", "dir"]
Expand All @@ -26,7 +20,7 @@ class TapisSystemFile(BaseModel):
path: str
size: int = None

class TapisSystemFileOutput(BaseTapisTaskOutput):
class TapisSystemFileOutput(BaseModel):
file: TapisSystemFile

class ReqSubmitJob(BaseModel):
Expand Down

0 comments on commit 7feeb54

Please sign in to comment.