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 08cc7e3 commit d17c1d5Copy full SHA for d17c1d5
src/PythonPlot.jl
@@ -67,8 +67,6 @@ PythonCall.pyconvert(::Type{Figure}, o::Py) = Figure(o)
67
Base.:(==)(f::Figure, g::Figure) = pyconvert(Bool, Py(f) == Py(g))
68
Base.isequal(f::Figure, g::Figure) = isequal(Py(f), Py(g))
69
Base.hash(f::Figure, h::UInt) = hash(Py(f), h)
70
-PythonCall.pycall(f::Figure, args...; kws...) = pycall(Py(f), args...; kws...)
71
-(f::Figure)(args...; kws...) = pycall(Py(f), PyAny, args...; kws...)
72
Base.Docs.doc(f::Figure) = Base.Docs.Text(pyconvert(String, Py(f).__doc__))
73
74
# Note: using `Union{Symbol,String}` produces ambiguity.
0 commit comments