Skip to content

Commit dfeb5a5

Browse files
committed
Fix formatter crash due to bipartite_graph.jl
1 parent 7b5c5f0 commit dfeb5a5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/bipartite_graph.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ Base.iterate(u::Unassigned, state) = nothing
2929

3030
Base.show(io::IO, ::Unassigned) = printstyled(io, "u"; color = :light_black)
3131

32-
struct Matching{U, V <: AbstractVector} <: AbstractVector{Union{U, Int}} #=> :Unassigned =#
32+
#U=> :Unassigned =#
33+
struct Matching{U, V <: AbstractVector} <: AbstractVector{Union{U, Int}}
3334
match::V
3435
inv_match::Union{Nothing, V}
3536
end

0 commit comments

Comments
 (0)