Skip to content

Commit 2e33da5

Browse files
committed
fixed error
1 parent be88b1f commit 2e33da5

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

libs/labelbox/src/labelbox/schema/ontology.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,11 @@
1313
from labelbox.orm.db_object import DbObject
1414
from labelbox.orm.model import Field, Relationship
1515
from labelbox.schema.tool_building.step_reasoning_tool import StepReasoningTool
16+
from typing import TYPE_CHECKING
1617
from labelbox.schema.tool_building.tool_type import ToolType
17-
from labelbox import Project
18+
19+
if TYPE_CHECKING:
20+
from labelbox import Project
1821

1922
FeatureSchemaId: Type[str] = Annotated[
2023
str, StringConstraints(min_length=25, max_length=25)

0 commit comments

Comments
 (0)