We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 730f9d6 commit cc6d6ddCopy full SHA for cc6d6dd
1 file changed
evals/runner.py
@@ -99,7 +99,7 @@ def _read_csv_rows(path: Path) -> List[List[str]]:
99
if not path.exists():
100
return []
101
with path.open("r", encoding="utf-8", newline="") as f:
102
- return [row for row in csv.reader(f)]
+ return [[cell.replace("\r\n", "\n") for cell in row] for row in csv.reader(f)]
103
104
105
# ---------------------------------------------------------------------------
0 commit comments