欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

AttributeError: cannot assign module before Module.__init__() call

程序员文章站 2022-03-26 23:17:41
...
错误展示
AttributeError: cannot assign module before Module.__init__() call

报错解析

【error】在初始化函数调用前不能获得分配模块

解决方案

在init方法中添加super继承父类的属性和方法

super(TextClassfer, self).__init__()
相关标签: AttributeError