Skip to content

Commit 784fd4f

Browse files
Arsh ZahedArsh Zahed
authored andcommitted
update version, add quotes to error message
1 parent 2e86503 commit 784fd4f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ build-backend = "poetry.masonry.api"
1212

1313
[tool.poetry]
1414
name = "together"
15-
version = "1.3.6"
15+
version = "1.3.7"
1616
authors = [
1717
"Together AI <[email protected]>"
1818
]

src/together/utils/files.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ def _check_jsonl(file: Path) -> Dict[str, Any]:
150150
not in JSONL_REQUIRED_COLUMNS_MAP[possible_format]
151151
):
152152
raise InvalidFileFormatError(
153-
message=f"Found extra column {column} in the line {idx + 1}.",
153+
message=f'Found extra column "{column}" in the line {idx + 1}.',
154154
line_number=idx + 1,
155155
error_source="format",
156156
)

0 commit comments

Comments
 (0)