Skip to content

Commit 0a99cf2

Browse files
authored
enh: print after plots are generated
1 parent c904709 commit 0a99cf2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/run.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,10 +164,11 @@ def plot(output_dir, drop_cutoff):
164164
unique_success = load_event("success")
165165

166166
plot_performance(unique_started, unique_success, drop_cutoff=drop_cutoff, out_file=out_perf)
167+
click.echo(f"Saved {out_perf}.")
167168

168169
started_v, success_v = massage_versions(unique_started, unique_success)
169170
plot_version_stream(started_v, success_v, drop_cutoff=drop_cutoff, out_file=out_ver)
170-
click.echo(f"Saved plots to {output_dir}")
171+
click.echo(f"Saved {out_ver}")
171172

172173

173174
if __name__ == "__main__":

0 commit comments

Comments
 (0)