Skip to content

Commit

Permalink
print download_data logs
Browse files Browse the repository at this point in the history
  • Loading branch information
nerdai committed Sep 24, 2024
1 parent 740937f commit 9530f4f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion arc_finetuning_st/streamlit/startup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@


def download_data() -> None:
subprocess.run("; ".join(commands), capture_output=True, shell=True)
ret = subprocess.run("; ".join(commands), capture_output=True, shell=True)
print(ret.stdout.decode())


if __name__ == "__main__":
Expand Down

0 comments on commit 9530f4f

Please sign in to comment.