AttributeError: 'MyWindow' object has no attribute 'image_thread'
时间: 2023-10-21 07:36:06 浏览: 131
【Python】AttributeError: ‘AutoSchema’ object has no attribute ‘get_link’
5星 · 资源好评率100%
这个错误通常表示你的 `MyWindow` 类中没有名为 `image_thread` 的属性,但是你的代码中使用了这个属性。可能原因是你忘记在 `MyWindow` 类中定义了这个属性,或者定义了但是没有正确初始化。
你需要检查你的代码,确保在 `MyWindow` 类中定义了 `image_thread` 属性,并且在需要使用时已经正确初始化。如果你需要进一步帮助,请提供更多代码和错误信息的上下文。
阅读全文