Skip to content

Commit

Permalink
update version, add quotes to error message
Browse files Browse the repository at this point in the history
  • Loading branch information
Arsh Zahed authored and Arsh Zahed committed Dec 11, 2024
1 parent 2e86503 commit 784fd4f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ build-backend = "poetry.masonry.api"

[tool.poetry]
name = "together"
version = "1.3.6"
version = "1.3.7"
authors = [
"Together AI <[email protected]>"
]
Expand Down
2 changes: 1 addition & 1 deletion src/together/utils/files.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def _check_jsonl(file: Path) -> Dict[str, Any]:
not in JSONL_REQUIRED_COLUMNS_MAP[possible_format]
):
raise InvalidFileFormatError(
message=f"Found extra column {column} in the line {idx + 1}.",
message=f'Found extra column "{column}" in the line {idx + 1}.',
line_number=idx + 1,
error_source="format",
)
Expand Down

0 comments on commit 784fd4f

Please sign in to comment.