We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94f741a commit d06b931Copy full SHA for d06b931
src/model.jl
@@ -163,10 +163,10 @@ _keys(params::Tuple{}, m::AbstractModel) = ()
163
end
164
165
166
-function Base.show(io::IO, ::MIME"text/plain", m::AbstractModel)
167
- show(typeof(m))
+function Base.show(io::IO, mime::MIME"text/plain", m::AbstractModel)
+ show(io, mime, typeof(m))
168
println(io, " with parent object of type: \n")
169
- show(typeof(parent(m)))
+ show(io, mime, typeof(parent(m)))
170
println(io, "\n\n")
171
printparams(io::IO, m)
172
0 commit comments