Python TypeError: функция принимает позиционные аргументы, но были даны

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