Hier是我的第一个问题:Name 'xxx' is not defined
编辑后我有这个错误:
self.view_splash(0)
TypeError: view_splash() takes 1 positional argument but 2 were given
我需要做些什么来修复它?
答案 0 :(得分:0)
def view_splash(arg1):
在一个类中,所以你应该使用staticmethod装饰器
@staticmethod
def view_splash(arg1):