You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
File “/config/custom_components/sighthound/image_processing.py”, line 112, in process_image
self.faces = hound.get_faces(detections)
File “/usr/local/lib/python3.7/site-packages/simplehound/core.py”, line 54, in get_faces
for obj in detections[“objects”]:
TypeError: ‘NoneType’ object is not subscriptable
Caused when detections is None and we are calling get_faces(). We need to check and exit on None detections
The text was updated successfully, but these errors were encountered:
As reported on forums:
Caused when detections is None and we are calling get_faces(). We need to check and exit on None detections
The text was updated successfully, but these errors were encountered: