Python TypeError: Fungsi mengambil argumen posisi tetapi diberikan

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