chore: Update post_process_raw function in artifact.py
The post_process_raw function in artifact.py has been updated to set the raw value to "Built Successfully ✨" when the artifact type is unknown. This change improves the clarity of the code and provides a more meaningful message for unknown artifact types.
This commit is contained in:
parent
ab9083d066
commit
5e33628959
1 changed files with 1 additions and 1 deletions
|
|
@ -50,6 +50,6 @@ def post_process_raw(raw, artifact_type: str):
|
|||
if artifact_type == ArtifactType.STREAM.value:
|
||||
raw = ""
|
||||
elif artifact_type == ArtifactType.UNKNOWN.value:
|
||||
raw = str(raw)
|
||||
raw = "Built Successfully ✨"
|
||||
|
||||
return raw
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue