我有一个文件notifications.py
和comments.py
. 通知有一个GetNotifications
带有函数的类getNotifs(arg1, arg2)
。我想在我的comments.py中调用这个方法,所以我这样做:
from notifications import GetNotifications
然后我创建一个类的实例:
getNotifsInstance = GetNotifications()
然后我尝试调用 getNotifs:
notifsDictionary = getNotifsInstance.getNotifs(arg1, arg2)
但是,我收到了错误:
TypeError: getNotifs() takes at most 2 arguments (3 given)
为什么我只给它 2 个参数,却说我给它 3 个参数?