TypeError:' xxx'需要1个位置参数,但给出2个

时间:2016-03-20 21:37:38

标签: python

Hier是我的第一个问题:Name 'xxx' is not defined

编辑后我有这个错误:

self.view_splash(0)
TypeError: view_splash() takes 1 positional argument but 2 were given

我需要做些什么来修复它?

1 个答案:

答案 0 :(得分:0)

def view_splash(arg1):在一个类中,所以你应该使用staticmethod装饰器

@staticmethod
def view_splash(arg1):