Python TypeError: La fonction prend des arguments de position mais a été donné

class MyClass:
  # don't forget to add self as the first parameter to the class method
  def method(self, arg):
    print(arg)
Anxious Alligator