Skip to content

Commit 5656c9c

Browse files
committed
Formatting
1 parent d49623a commit 5656c9c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/together/resources/finetune.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,9 @@ def _parse_raw_checkpoints(
240240
for checkpoint in checkpoints:
241241
step = checkpoint["step"]
242242
checkpoint_type = checkpoint["checkpoint_type"]
243-
checkpoint_name = f"{id}:{step}" if "intermediate" in checkpoint_type.lower() else id
243+
checkpoint_name = (
244+
f"{id}:{step}" if "intermediate" in checkpoint_type.lower() else id
245+
)
244246

245247
parsed_checkpoints.append(
246248
FinetuneCheckpoint(

0 commit comments

Comments
 (0)