Skip to content

Commit

Permalink
fix syntax for string join
Browse files Browse the repository at this point in the history
Signed-off-by: Jack Luar <jluar@precisioninno.com>
  • Loading branch information
luarss committed Jan 13, 2025
1 parent 8d24c61 commit 251686d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/AutoTuner/src/autotuner/utils/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ def load_dir(dir: str) -> pd.DataFrame:

# Print failed, if any
if failed:
print(f"Failed to load {len(failed)} files:\n{'\n'.join(failed)}")
failed_files = "\n".join(failed)
print(f"Failed to load {len(failed)} files:\n{failed_files}")
return progress_df


Expand Down

0 comments on commit 251686d

Please sign in to comment.