Skip to content

Commit

Permalink
Add missing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
pedromxavier committed Dec 4, 2023
1 parent 2c59999 commit 4838337
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/library/format/qubist/parser.jl
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ function read_model(io::IO, fmt::Qubist)

if !haskey(data, :dimension)
data[:dimension] = max(

Check warning on line 12 in src/library/format/qubist/parser.jl

View check run for this annotation

Codecov / codecov/patch

src/library/format/qubist/parser.jl#L12

Added line #L12 was not covered by tests
maximum(keys(data[:linear_terms]))
maximum(keys(data[:linear_terms])),
maximum(maximum, keys(data[:quadratic_terms]))
)
end
Expand Down

0 comments on commit 4838337

Please sign in to comment.