We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b66aa43 commit 0a8348fCopy full SHA for 0a8348f
src/foundry_cli/download_checkpoints.py
@@ -247,7 +247,7 @@ def clean(
247
248
console.print("[bold]Files to delete:[/bold]")
249
total_size = 0
250
- for ckpt in sorted(checkpoint_files, key=lambda path: str(path)):
+ for ckpt in sorted(checkpoint_files, key=str):
251
size = ckpt.stat().st_size / (1024**3) # GB
252
total_size += size
253
console.print(f" {ckpt} ({size:.2f} GB)")
0 commit comments