From 10dad94b84ae0a41b1ff03d6d705732834958efb Mon Sep 17 00:00:00 2001 From: Owen Jacobson Date: Mon, 13 Nov 2017 23:53:39 -0500 Subject: fixup! Flatten arguments inside the evaluator. --- actinide/evaluator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 # -- cgit v1.2.3