Skip to content
Snippets Groups Projects
Commit 85d7f802 authored by dilawar's avatar dilawar :ant:
Browse files

feat: convert bytes to str before priting.

parent 29ce9eac
No related branches found
No related tags found
No related merge requests found
Pipeline #3603 failed with stages
in 11 seconds
......@@ -110,7 +110,7 @@ def submit_job(pipeline_zip: Path, server: str):
f"{server}/submit", files=files, data=dict(filename=pipeline_zip), stream=True
)
for line in r.iter_lines():
print(line)
print(line.decode())
@app.command("run")
......
No preview for this file type
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment