File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 1616from dataclasses import dataclass , field
1717from datetime import datetime
1818from typing import (
19+ TYPE_CHECKING ,
1920 Any ,
2021 Dict ,
2122 Iterable ,
5758 _infer_attribute_from_answer ,
5859 _search_child_attributes ,
5960)
60- from encord .objects .ontology_labels_impl import LabelRowV2
6161from encord .objects .ontology_object import Object
6262from encord .objects .options import Option
6363from encord .objects .types import (
6868)
6969from encord .objects .utils import check_email , short_uuid_str
7070
71+ if TYPE_CHECKING :
72+ from encord .objects .ontology_labels_impl import LabelRowV2
73+
7174
7275class ObjectInstance :
7376 """An object instance is an object that has coordinates and can be placed on one or multiple frames in a label row."""
You can’t perform that action at this time.
0 commit comments