Python typeerror: Funkcja przyjmuje argumenty pozycyjne, ale otrzymano

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