Skip to content

Commit d57cbf6

Browse files
fix: 移除 wait_for_result() 中的 DEBUG 代码
1 parent 29f8839 commit d57cbf6

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

bootcs/__main__.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -527,11 +527,6 @@ def wait_for_result(submission_id: str, token: str, timeout: int = 60):
527527

528528
try:
529529
result = client.get(f"/api/submissions/{submission_id}")
530-
# DEBUG: Print result type and content
531-
import json
532-
print(f"\nDEBUG result type: {type(result)}")
533-
print(f"DEBUG result: {json.dumps(result, indent=2, default=str)[:500]}")
534-
535530
status = result.get('status')
536531

537532
# Terminal states

0 commit comments

Comments
 (0)