I'm trying to compile a project but I'm getting a invalid syntax error during tests with arrow point at the 'h' in with. I haven't written the code and it is fairly years old.
d = Gnuplot.Data(pnts,title=im_title,with='candlesticks')
I tried changing with to something else but then I got different errors. What can I do to fix this issue?
withis a Python keyword.withis a reserved word for Python interpreter. Without error traceback we can't say anything about "different errors".withas a keyword argument, becausewithis a Python keyword. Double-check the API.with_worked, thanks.