Skip to content

Commit 5a7834a

Browse files
committed
ruff format + bump CLI version to 0.0.16
1 parent 8ed833a commit 5a7834a

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

cli/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "transformerlab-cli"
7-
version = "0.0.15"
7+
version = "0.0.16"
88
description = "Transformer Lab CLI"
99
requires-python = ">=3.10"
1010
authors = [{ name = "Transformer Lab", email = "hello@transformerlab.ai" }]

cli/src/transformerlab_cli/templates/task_init/main.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,7 @@ def main():
5656
# download (metrics, plots, CSVs, etc.). The second argument is
5757
# the name the artifact appears under in the UI / CLI.
5858
summary_path = Path("training_summary.json")
59-
summary_path.write_text(
60-
json.dumps({"steps": total_steps, "ok": True}, indent=2)
61-
)
59+
summary_path.write_text(json.dumps({"steps": total_steps, "ok": True}, indent=2))
6260
lab.save_artifact(str(summary_path), "training_summary.json")
6361

6462
# If you trained a model, you would also call:

0 commit comments

Comments
 (0)