We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a41964c commit 19f2764Copy full SHA for 19f2764
src/Pretty.jl
@@ -70,6 +70,6 @@ end
70
function show(io::IO, T::Tableau)
71
MM = _pretty_string.(T.M[2:end, :])
72
MM = hcat(_left_column(T), MM)
73
- style = TextTableStyle(first_line_column_label = _header_colors(T));
74
- pretty_table(MM; column_labels= [_header1(T), _header2(T)], style=style)
+ style = TextTableStyle(; first_line_column_label=_header_colors(T));
+ pretty_table(MM; column_labels=[_header1(T), _header2(T)], style=style)
75
end
0 commit comments