IssueFrameRange Objects
FrameRangeIssue Objects
AnnotationIssue Objects
TaskIssues Objects
list
- FileIssue: Issues anchored to the entire data unit
- FrameIssue: Issues anchored to a specific frame
- CoordinateIssue: Issues anchored to specific coordinates on a frame
- FrameRangeIssue: Issues anchored to a range of frames
- AnnotationIssue: Issues anchored to a specific annotation
Iterable[Issue]- An iterator of Issue objects (discriminated union of all issue types).
for issue in task.issues.list(): … if isinstance(issue, FileIssue): … print(f”File issue: ”) … elif isinstance(issue, FrameIssue): … print(f”Frame : “)
add_file_issue
commentstr - The comment for the issue.issue_tagsList[str] - The issue tags for the issue.
add_frame_issue
frame_indexint - The index of the frame to add the issue to.commentstr - The comment for the issue.issue_tagsList[str] - The issue tags for the issue.
add_coordinate_issue
frame_indexint - The index of the frame to add the issue to.xfloat - The x coordinate of the issue.yfloat - The y coordinate of the issue.commentstr - The comment for the issue.issue_tagsList[str] - The issue tags for the issue.

