Skip to content

Commit 8a03579

Browse files
committed
test
1 parent 5d5e9f7 commit 8a03579

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

cli/polyaxon/_flow/component/component.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ class V1Component(
375375
_IDENTIFIER = "component"
376376
_CUSTOM_DUMP_FIELDS = {"run"}
377377

378-
kind: Literal[_IDENTIFIER] = _IDENTIFIER
378+
kind: Literal["component"] = _IDENTIFIER
379379
inputs: Optional[List[V1IO]] = None
380380
outputs: Optional[List[V1IO]] = None
381381
run: Union[V1Runtime]

cli/polyaxon/_flow/operations/operation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,7 @@ class V1Operation(BaseOp, TemplateMixinConfig):
513513
]
514514
_CUSTOM_DUMP_FIELDS = {"component"}
515515

516-
kind: Literal[_IDENTIFIER] = _IDENTIFIER
516+
kind: Literal["operation"] = _IDENTIFIER
517517
params: Optional[Dict[StrictStr, V1Param]] = None
518518
hub_ref: Optional[StrictStr] = Field(alias="hubRef", default=None)
519519
dag_ref: Optional[StrictStr] = Field(alias="dagRef", default=None)

0 commit comments

Comments
 (0)