Skip to content

Commit

Permalink
Merge pull request #356 from LinuxIsCool/patch-1
Browse files Browse the repository at this point in the history
Update easy_run.py
  • Loading branch information
danlessa authored Apr 5, 2024
2 parents e72cb9b + b285a08 commit e8114c8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cadCAD/tools/execution/easy_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ def describe_or_return(v: object) -> object:
return f'function: {v.__name__}'
elif isinstance(v, types.LambdaType) and v.__name__ == '<lambda>':
return f'lambda: {inspect.signature(v)}'
elif isinstance(v, list):
return str(v)
else:
return v

Expand Down

0 comments on commit e8114c8

Please sign in to comment.