You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
function DisplayDictAsTree(myDict, Title = "")
function pn(io, node; kw...)
# https://github.com/FedeClaudi/Term.jl/issues/206
if node == myDict
print(io, Title)
elseif node isa AbstractDict
print(io, string(typeof(node)))
else
print(io, node)
end
end
Term.Tree(myDict; print_node_function = pn)
end
As seen in #206 , the title is overwritten.
The text was updated successfully, but these errors were encountered: