Skip to content

Commit d4ab82a

Browse files
authored
Fix bug in DQM for START-TIMES of unsized type (#205)
1 parent 6a50459 commit d4ab82a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/nectarchain/dqm/trigger_statistics.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,9 @@ def get_results(self):
100100
"Wrong times": [len(self.event_wrong_times)],
101101
}
102102
self.TriggerStat_Results_Dict["START-TIMES"] = {
103-
"Run start time": self.run_start1,
104-
"First event": self.run_start,
105-
"Last event": self.run_end,
103+
"Run start time": [self.run_start1],
104+
"First event": [self.run_start],
105+
"Last event": [self.run_end],
106106
}
107107
return self.TriggerStat_Results_Dict
108108

0 commit comments

Comments
 (0)