We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a9ab40 commit 0579e83Copy full SHA for 0579e83
onlinejudge_verify/verify.py
@@ -76,7 +76,7 @@ def verify_file(path: pathlib.Path, *, compilers: List[str], tle: float, jobs: i
76
directory = pathlib.Path('.verify-helper/cache') / hashlib.md5(url.encode()).hexdigest()
77
if not (directory / 'test').exists() or list((directory / 'test').iterdir()) == []:
78
directory.mkdir(parents=True, exist_ok=True)
79
- exec_command(['sleep', '2'])
+ time.sleep(2)
80
command = ['oj', 'download', '--system', '-d', str(directory / 'test'), '--silent', url]
81
82
if os.environ.get('DROPBOX_TOKEN'):
0 commit comments