Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
kafisatz committed Feb 3, 2025
1 parent a87b04f commit 0ad12b0
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/charts.jl
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ function addChartToWorkbook!(workbook::PyCall.PyObject, worksheet::PyCall.PyObje
append!(fieldsWhichAreAlreadySet, resevedKeywords)
if !in(x, fieldsWhichAreAlreadySet)
PyCall.pycall(chart[x], PyCall.PyAny, chartDict[x]) # TBD: unclear how to fix this line... (deprecated syntax...)
#https://discourse.julialang.org/t/pycall-deprecation-warning-getindex-o-x-vs-o-x-where-x-is-a-julia-variable/125495/2
#PyCall.pycall(getproperty(chart, x), PyCall.PyAny, getproperty(chart, x))
#PyCall.pycall(get(chart, x), PyCall.PyAny, getproperty(chart, x))
end
end
PyCall.pycall(worksheet."insert_chart", PyCall.PyAny, location, chart)
Expand Down

0 comments on commit 0ad12b0

Please sign in to comment.