Skip to content

Commit 9f7f0a1

Browse files
author
Shrey Modi
committed
fixed cursor comment
1 parent f9ff21c commit 9f7f0a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eval_protocol/utils/evaluation_row_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ def create_rows_from_indices(count: int, **metadata) -> List[EvaluationRow]:
148148
"""
149149
rows = []
150150
for idx in range(count):
151-
row_metadata = {"row_id": str(idx), **metadata}
151+
row_metadata = {**metadata, "row_id": str(idx)}
152152
rows.append(
153153
EvaluationRow(
154154
messages=[],

0 commit comments

Comments
 (0)