Skip to content

Commit 2165431

Browse files
committed
fix(codegen): stop by upper bound
1 parent e8798f4 commit 2165431

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bigcodebench/generate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def codegen(
6464
if id_num < low:
6565
p.console.print(f"Skipping {task_id} as it is not in {id_range}")
6666
continue
67-
if id_num > id_range[1]:
67+
if id_num >= id_range[1]:
6868
break
6969

7070
p_name = task_id.replace("/", "_")

0 commit comments

Comments
 (0)