Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
geoff128 committed Jun 29, 2024
1 parent cab8983 commit 7b6f149
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name = "sioworkers",
version = '1.5.1',
version = '1.5.2',
author = "SIO2 Project Team",
author_email = '[email protected]',
description = "Programming contest judging infrastructure",
Expand Down
4 changes: 2 additions & 2 deletions sio/executors/interactive_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def run(self):
environ_prefix='interactor_',
mem_limit=DEFAULT_INTERACTOR_MEM_LIMIT,
time_limit=interactor_time_limit,
pass_fds=(r2, w1),
fds_to_close=(r2, w1),
close_passed_fd=True,
cwd=tempcwd(),
in_file=environ['in_file'],
Expand All @@ -166,7 +166,7 @@ def run(self):
ignore_errors=True,
environ=environ,
environ_prefix='exec_',
pass_fds=(r1, w2),
fds_to_close=(r1, w2),
close_passed_fd=True,
cwd=tempcwd(),
in_file=environ['in_file'],
Expand Down

0 comments on commit 7b6f149

Please sign in to comment.