[Solved] python self is acting up
Normally, when you create an instance of a class draw, the initialization routine draw.__init__ is automatically called for you, and the self argument is added implicitly, so you don’t specify it explicitly. Here’s the normal case: d = draw( canvas, 20, 40, … ) …and indeed that’s just what you seem to have assumed. Your … Read more