Skip to content

Commit

Permalink
Fix missing namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
tbarbette committed Jul 24, 2024
1 parent 6cdaa1d commit 59dcc47
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions npf_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,13 +272,14 @@ def main():
graph_variables=[Run(x) for x in test.variables],
options = args)
if time_results:
for find, results in time_results.items():
for time_ns, results in time_results.items():
if not results:
continue
series_with_history = [(test, build, results)]
grapher.graph(series=series_with_history,
title=test.get_title(),
filename=filename,
filename = filename,
fileprefix = time_ns,
options = args)
if last_build and args.graph_num > 0:
graph_builds = [last_build] + graph_builds[:-1]
Expand Down

0 comments on commit 59dcc47

Please sign in to comment.