From 6493945736eda64ce277572b6bfa6bcb2ecb67af Mon Sep 17 00:00:00 2001 From: Karma Riuk Date: Wed, 11 Jun 2025 09:24:24 +0200 Subject: [PATCH] fixed slight bug --- src/utils/process_data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/process_data.py b/src/utils/process_data.py index a1cd91d..da13a50 100644 --- a/src/utils/process_data.py +++ b/src/utils/process_data.py @@ -120,6 +120,7 @@ def evaluate_refinement( ) continue + results[id] = {} try: build_handler.inject_changes(changes) except Exception as e: @@ -134,7 +135,6 @@ def evaluate_refinement( current_progress += 1 percent_cb(current_progress / total_number_of_steps * 100) - results[id] = {} with build_handler: steps = [ ("compilation", build_handler.compile_repo),