`header` is ignored for `Dict`
laborg opened this issue · 2 comments
laborg commented
Hi,
I assumed that the header should show up when printing a Dict. Is this to be expected?
julia> pretty_table(Dict(:a=>1,:b=>2),header=(["ColumnK","ColumV"]))
┌────────┬────────┐
│ Keys │ Values │
│ Symbol │ Int64 │
├────────┼────────┤
│ a │ 1 │
│ b │ 2 │
└────────┴────────┘
PrettyTables v2.2.6
ronisbr commented
Oops :) Thanks for the report! Should be fixed by now (when a new version is tagged).
laborg commented
wow, that was quick. thanks!