From 0fa617766f15d9b52e4684d6936c2d2c65023196 Mon Sep 17 00:00:00 2001 From: sforman Date: Mon, 24 Jul 2023 11:29:06 -0700 Subject: [PATCH] Make it compatible with Xerblin. --- implementations/Python/joy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/implementations/Python/joy.py b/implementations/Python/joy.py index 9acd7d1..ee4c012 100755 --- a/implementations/Python/joy.py +++ b/implementations/Python/joy.py @@ -520,7 +520,7 @@ def run(text, stack, dictionary): :param str text: Joy code. :param stack stack: The stack. :param dict dictionary: A ``dict`` mapping names to Joy functions. - :rtype: (stack, (), dictionary) + :rtype: (stack, dictionary) ''' return joy(stack, text_to_expression(text), dictionary)