diff options
author | 2022-11-18 13:42:53 -0500 | |
---|---|---|
committer | 2022-11-18 13:42:53 -0500 | |
commit | 16557f98ee88c1f9f0c74cc0a29de2baa71c79c3 (patch) | |
tree | 41e09af8ed4ceb67da0638ee7859b3f3ba526973 | |
parent | docstring update (diff) |
Remove empty str from default py_args
-rw-r--r-- | snekbox/nsjail.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/snekbox/nsjail.py b/snekbox/nsjail.py index 8a012cc..53755ff 100644 --- a/snekbox/nsjail.py +++ b/snekbox/nsjail.py @@ -143,7 +143,7 @@ class NsJail: code: str, *, nsjail_args: Iterable[str] = (), - py_args: Iterable[str] = ("",), + py_args: Iterable[str] = (), ) -> EvalResult: """ Execute Python 3 code in an isolated environment and return the completed process. |