Skip to content

Commit a130e47

Browse files
authored
Fix is_func_call
1 parent 5c0cac8 commit a130e47

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/interface.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,8 @@ function is_func_call(x::EXPR)
8282
return true
8383
elseif x.head === :where || isbracketed(x)
8484
return is_func_call(x.args[1])
85-
else
86-
return false
8785
end
86+
return false
8887
end
8988

9089

0 commit comments

Comments
 (0)