AttributeError: 'ImageThread' object has no attribute 'saved_color_photos'
时间: 2023-09-16 21:07:57 浏览: 68
mdk_armcc_user_guide.pdf
这个错误是因为你的 `ImageThread` 类中没有一个名为 `saved_color_photos` 的属性,但是你在某处使用了它。
你需要检查你的代码,查看在哪里使用了 `saved_color_photos` 属性,然后确认是否正确地定义了该属性。你可以在 `ImageThread` 类的构造函数中为其设置初始值,例如:
```
class ImageThread(Thread):
def __init__(self):
super(ImageThread, self).__init__()
self.saved_color_photos = []
```
这样就会在创建 `ImageThread` 实例时初始化 `saved_color_photos` 属性为空列表。
阅读全文