takes 0 positional arguments but 6 were given code example
Example 1: TypeError: takes 0 positional arguments but 1 was given python
When Python tells you "generatecode() takes 0 positional arguments but 1 was
given", it's telling you that your method is set up to take no arguments, but
the self argument is still being passed when the method is called, so in fact
it is receiving one argument.
Adding self to your method definition should resolve the problem.
Example 2: takes 2 positional arguments but 3 were given
class myclass:
def __init__(self, parameter):
self.parameter = parameter
def function(self, otherparameter):
print(self.parameter + otherparameter)
object=myclass(1)
object.function(2)