Skip to content

Commit 3252b59

Browse files
committed
Fix typo
1 parent 0dea393 commit 3252b59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

devops/scripts/benchmarking/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ def export_python_globals(self):
191191
metric_tolerances = \
192192
dict([ pair_str.split(":") for pair_str in m_tol_str.split(",") ])
193193

194-
for metric, tolerance_str in metric_tolerances:
194+
for metric, tolerance_str in metric_tolerances.items():
195195
if metric not in metrics_recorded:
196196
print(f"Metric compared against {metric} is not being recorded.",
197197
file=sys.stderr)

0 commit comments

Comments
 (0)