Skip to content

Commit 954af3e

Browse files
fixup! fix: remove usages of occursin for searching expressions
1 parent 7e26935 commit 954af3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ function check_variables(dvs, iv)
148148
for dv in dvs
149149
isequal(iv, dv) &&
150150
throw(ArgumentError("Independent variable $iv not allowed in dependent variables."))
151-
(is_delay_var(iv, dv) || SU.query!(isequal(iv), dv)) ||
151+
(is_delay_var(iv, dv) || SU.query(isequal(iv), dv)) ||
152152
throw(ArgumentError("Variable $dv is not a function of independent variable $iv."))
153153
end
154154
end

0 commit comments

Comments
 (0)