Re: [Tutor] unbound method function()

2006-07-12 Thread Luke Paireepinart
I noticed no one has answered your question yet, so here's my answer, and someone should come along and correct me if I give you any wrong info. ryan luna wrote: > I have two Classes, I have a method in the first class (using > Pygame/livewires moduls) > > Class1(games.Sprite): >function1(

[Tutor] unbound method function()

2006-07-12 Thread ryan luna
I have two Classes, I have a method in the first class (using Pygame/livewires moduls)Class1(games.Sprite):       function1(self):That is being called by the second classClass2(games.Sprite):       function2(self):         Class1.function1()When the code runs i get this error"unbound method functi