Skip to content

Commit 1007482

Browse files
committed
Fix for lazy evaluation. Forgot to return value.
1 parent 1843ee3 commit 1007482

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

more_math/helper_functions.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,5 @@ def comonLazy(expr, a, b=None, c=None, d=None, w=0.0, x=0.0, y=0.0, z=0.0):
5454
print("Variable is None:", variables.get(token.text) is None)
5555
if token.text in variables and variables[token.text] is None:
5656
need_eval.append(token.text)
57-
print ("Need eval:", need_eval)
57+
print ("Need eval:", need_eval)
58+
return need_eval

0 commit comments

Comments
 (0)