Skip to content
Snippets Groups Projects
Commit 2193163a authored by Tamas Gal's avatar Tamas Gal :speech_balloon:
Browse files

Fix typo

parent 2a780c74
No related branches found
No related tags found
No related merge requests found
......@@ -161,7 +161,8 @@ class TriggerRate(kp.Module):
run_changes_to_plot = self._get_run_changes_to_plot()
self.print("Recorded run changes: {}".format(run_changes_to_plot))
min_trigger_rate = min([r[1] for r in trigger_rates['Overall']])
min_trigger_rate = min(
[r[1] for r in trigger_rates['Overall'].values()])
for run_start, run in run_changes_to_plot:
plt.text(
run_start,
......
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