aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar ionite34 <[email protected]>2022-11-18 13:42:53 -0500
committerGravatar ionite34 <[email protected]>2022-11-18 13:42:53 -0500
commit16557f98ee88c1f9f0c74cc0a29de2baa71c79c3 (patch)
tree41e09af8ed4ceb67da0638ee7859b3f3ba526973
parentdocstring update (diff)
Remove empty str from default py_args
-rw-r--r--snekbox/nsjail.py2
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.