Skip to content

Commit f05f2b9

Browse files
committed
make sure kwargs are passed in
1 parent 7f6b1e8 commit f05f2b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ end
138138
__init_u0_from_Ab(::SMatrix{S1, S2}, b) where {S1, S2} = zeros(SVector{S2, eltype(b)})
139139

140140
function SciMLBase.init(prob::LinearProblem, alg::SciMLLinearSolveAlgorithm, args...; kwargs...)
141-
__init(prob, alg, args..., kwargs...)
141+
__init(prob, alg, args...; kwargs...)
142142
end
143143

144144
function __init(prob::LinearProblem, alg::SciMLLinearSolveAlgorithm,

0 commit comments

Comments
 (0)