Skip to content

Commit

Permalink
Increase logged precision to avoid 0.0 durations
Browse files Browse the repository at this point in the history
  • Loading branch information
NeonDaniel committed Oct 10, 2023
1 parent 58bd1e6 commit a4eed87
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions neon_minerva/integration/user_utterance.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,9 @@ def run_test(self) -> dict:
formatted_results = dict()
for key, values in aggregated_results.items():
formatted_results[key] = {"average": round(sum(values) /
len(values), 3),
"minimum": round(min(values), 3),
"maximum": round(max(values), 3)}
len(values), 6),
"minimum": round(min(values), 6),
"maximum": round(max(values), 6)}
return formatted_results

def register_bus_events(self):
Expand Down

0 comments on commit a4eed87

Please sign in to comment.