Skip to content

Commit c0ad781

Browse files
committed
fix: init times as -1
1 parent 1702f0f commit c0ad781

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bigcodebench/gen/util/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def trusted_check(
8585
):
8686
timeout = os.getenv("BIGCODEBENCH_TIMEOUT_PER_TASK", 120) + 1
8787
# shared memory objects
88-
times = Value("d")
88+
times = Value("d", -1)
8989
manager = Manager()
9090

9191
p = multiprocessing.Process(

0 commit comments

Comments
 (0)