Skip to content

Commit 892b1ee

Browse files
committed
Fix string formatting
1 parent dc0bd7d commit 892b1ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/together/resources/finetune.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ def _parse_raw_checkpoints(
250250
else:
251251
checkpoint_type = "Final Merged" if has_adapters else "Final"
252252
else:
253-
checkpoint_type = "Intermediate (step {step})"
253+
checkpoint_type = f"Intermediate (step {step})"
254254

255255
parsed_checkpoints.append(
256256
FinetuneCheckpoint(

0 commit comments

Comments
 (0)