Skip to content

Commit e9d28c4

Browse files
committed
Fix format
1 parent 800dae2 commit e9d28c4

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

src/MOI_wrapper.jl

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,11 @@ function dual_optimizer(
3434
with_bridge_type = coefficient_type,
3535
kwargs...,
3636
) where {T<:Number}
37-
inner = MOI.instantiate(optimizer_constructor; with_cache_type, with_bridge_type)
37+
inner = MOI.instantiate(
38+
optimizer_constructor;
39+
with_cache_type,
40+
with_bridge_type,
41+
)
3842
return () -> DualOptimizer{T}(inner, kwargs...)
3943
end
4044

0 commit comments

Comments
 (0)