fix: restore corrupted warning emoji in batch_runner checkpoint handler

This commit is contained in:
Kailigithub 2026-05-27 03:06:21 +00:00 committed by Teknium
parent 4b4b607e5b
commit 0ac32cf820
1 changed files with 1 additions and 1 deletions

View File

@ -1019,7 +1019,7 @@ class BatchRunner:
checkpoint_data["completed_prompts"] = sorted(completed_prompts_set)
self._save_checkpoint(checkpoint_data, lock=checkpoint_lock)
except Exception as ckpt_err:
print(f"⚠️ Warning: Failed to save final checkpoint: {ckpt_err}")
print(f"⚠️ Warning: Failed to save final checkpoint: {ckpt_err}")
# Calculate success rates
for tool_name in total_tool_stats: