Skip to content

Commit c4fcc96

Browse files
author
Christopher Doris
committed
delete tmp
1 parent 06a074f commit c4fcc96

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/py_macro.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -675,8 +675,9 @@ end
675675
function py_macro_lower_bool(st, body, ans, ex)
676676
# TODO: special cases to avoid round-tripping bools from Julia to Python to Julia
677677
@gensym x
678-
t = py_macro_lower(st, body, x, ex)
678+
tx = py_macro_lower(st, body, x, ex)
679679
py_macro_assign(body, ans, :($pytruth($x)))
680+
py_macro_del(body, x, tx)
680681
return
681682
end
682683

0 commit comments

Comments
 (0)