I am trying to use the python MNE library in Julia.
When I call the python function it returns a `Dict{Any,Any}` instead of a
type `info`, when I pass this variable back to another python function I
get the error
ERROR: PyError (:PyObject_Call) <type 'exceptions.TypeError'>
> TypeError("info must be an instance of Info, not <type 'dict'>",)
How can I keep the PyCall result as the `info` type and not have it
converted to a Julia dict?
