From 0ac32cf820e1f704864567de5fd72059d4283328 Mon Sep 17 00:00:00 2001 From: Kailigithub <12250313+Kailigithub@users.noreply.github.com> Date: Wed, 27 May 2026 03:06:21 +0000 Subject: [PATCH] fix: restore corrupted warning emoji in batch_runner checkpoint handler --- batch_runner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/batch_runner.py b/batch_runner.py index 61014b49bd0f4..5f7a5c4f12369 100644 --- a/batch_runner.py +++ b/batch_runner.py @@ -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: