ci: remove unused var
This commit is contained in:
parent
3ecd200da7
commit
38cd0482f0
6 changed files with 186 additions and 3 deletions
13
t/cf_exact.py
Normal file
13
t/cf_exact.py
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#!/usr/bin/env python3
|
||||
"""Call _submit_headless directly, no asyncio."""
|
||||
import json
|
||||
import os
|
||||
import sys
|
||||
|
||||
sys.path.insert(0, ".")
|
||||
|
||||
from scrapers.codeforces import _submit_headless
|
||||
|
||||
creds = json.loads(os.environ.get("CP_CREDENTIALS", "{}"))
|
||||
result = _submit_headless("1933", "a", "int main(){}", "89", creds)
|
||||
print(result.model_dump_json(indent=2))
|
||||
Loading…
Add table
Add a link
Reference in a new issue