diff --git a/cadCAD/tools/execution/easy_run.py b/cadCAD/tools/execution/easy_run.py index 5ea737e1..825ba480 100644 --- a/cadCAD/tools/execution/easy_run.py +++ b/cadCAD/tools/execution/easy_run.py @@ -16,6 +16,8 @@ def describe_or_return(v: object) -> object: return f'function: {v.__name__}' elif isinstance(v, types.LambdaType) and v.__name__ == '': return f'lambda: {inspect.signature(v)}' + elif isinstance(v, list): + return str(v) else: return v