Skip to content

Commit 36f673a

Browse files
committed
Fix epochs off by one
1 parent 8729378 commit 36f673a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def chat(
3636
"""
3737
)
3838
solved = False
39-
for _ in range(max_epochs):
39+
for _ in range(max_epochs - 1):
4040
# test_exit_code, test_result(s = get_test_results()
4141
test_exit_code, test_results = test_runner.run()
4242
print(test_results)

0 commit comments

Comments
 (0)