diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2017-11-13 23:53:39 -0500 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2017-11-13 23:53:39 -0500 |
| commit | 10dad94b84ae0a41b1ff03d6d705732834958efb (patch) | |
| tree | 7e0cfa8cef97e1b820f5de5d63186f4846c5b1a9 | |
| parent | 4bf7cea31d2c9bb123488099b11235ea05092ef4 (diff) | |
fixup! Flatten arguments inside the evaluator.
| -rw-r--r-- | actinide/evaluator.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actinide/evaluator.py b/actinide/evaluator.py index fe2e4c2..042f4b0 100644 --- a/actinide/evaluator.py +++ b/actinide/evaluator.py @@ -47,7 +47,7 @@ from . import types as t def run(continuation, environment, args=()): while continuation is not None: continuation, environment, *args = continuation(environment, *args) - return args + return tuple(args) # ## FLAT CONTINUATIONS # |
