You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@doutriaux1 The issue comes from Canvas.py::portrait(); whereby it calls self.canvas.canvasinfo. However, canvasinfo is not a member of the class Canvas defined here.
Is it just the indentation that is wrong when defining function canvasinfo ?
OR
Should I change all references of self.canvas.canvasinfo to self.canvasinfo?
What I meant was that canvasinfo is a member of class Canvas and hence should be used like: dict = apply(self.canvasinfo, cargs) instead of like dict = apply(self.canvas.canvasinfo, cargs) in Canvas.py::portrait()
leads to:
The text was updated successfully, but these errors were encountered: