我在一个名为 Object.py
的文件中定义了一个类。当我尝试从另一个文件中继承这个类时,调用构造函数会抛出一个异常:
TypeError: module.__init__() takes at most 2 arguments (3 given)
这是我的暗号:
import Object
class Visitor(Object):
pass
instance = Visitor() # this line throws the exception
我做错了什么?