Hi, me again :)
Look at this error please:
File "./kivycal-1", line 103, in number_two
self.check()
TypeError: check() takes exactly 2 arguments (1 given)
The error is pointing to here:
def number_two(self, event):
global numbers
numbers.append(2)
print numbers
self.check()
This is a part of a class in a .py file. I'm coding in python and kivy in that file.
And here is the check function:
def check(self):
global numbers
if len(numbers) == 3:
ckeck_to_answer()
Well, i can't understand what's the exact problem, what should i do?