Skip to content

Commit

Permalink
Merge pull request #47 from PumasAI/mh/fixup-ci-error
Browse files Browse the repository at this point in the history
Fix undefined ref error on Julia 1.6
  • Loading branch information
MichaelHatherly authored Feb 29, 2024
2 parents 14c2473 + 695e6f8 commit 50b08e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/worker.jl
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ function worker_init(f::File)
end

function Base.display(d::InlineDisplay, x)
push!(d.queue, @invokelatest render_mimetypes(x, d.cell_options))
push!(d.queue, Base.@invokelatest render_mimetypes(x, d.cell_options))
return nothing
end
Base.displayable(::InlineDisplay, m::MIME) = true
Expand Down

0 comments on commit 50b08e0

Please sign in to comment.