_thread.start_new_thread(self.sleepings, (event,)) AttributeError: 'Fatigue_detecting' object has no attribute 'sleepings'
时间: 2024-06-06 17:10:08 浏览: 57
Fatigue-Detection
这个问题看起来是一个 Python 语言中的错误提示。根据错误提示信息,可以得出结论:在代码中的某个地方,使用了一个名为 'sleepings' 的方法或属性,但是在当前对象中并没有这个方法或属性。
因此,可能需要仔细检查代码中的每个地方,看看有哪些可能存在错误或者缺失的地方,进而确定如何修改代码,以消除这个错误。
阅读全文