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
The extract_frames_as_images function modifies the input list framenums in-place by using framenums.pop(0). This can lead to unexpected behavior if the framenums list is used later because it will be empty.
Could fix this by copying the list first.
The text was updated successfully, but these errors were encountered:
mmif-python/mmif/utils/video_document_helper.py
Line 98 in 2e17432
The extract_frames_as_images function modifies the input list framenums in-place by using framenums.pop(0). This can lead to unexpected behavior if the framenums list is used later because it will be empty.
Could fix this by copying the list first.
The text was updated successfully, but these errors were encountered: