Skip to content

Commit 5ed769c

Browse files
committed
Updated the warning message to the standard message for feature schema attributes
1 parent 6824e0f commit 5ed769c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ class Type(Enum):
106106
def __post_init__(self):
107107
if self.attributes is not None:
108108
warnings.warn(
109-
"Attributes are an experimental feature and may change in the future."
109+
"The attributes for Tools are in beta. The attribute name and signature may change in the future."
110110
)
111111

112112
@classmethod

libs/labelbox/src/labelbox/schema/tool_building/classification.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def __post_init__(self):
9696
self.instructions = self.name
9797
if self.attributes is not None:
9898
warnings.warn(
99-
"Attributes are an experimental feature and may change in the future."
99+
"The attributes for Classifications are in beta. The attribute name and signature may change in the future."
100100
)
101101

102102
@classmethod

0 commit comments

Comments
 (0)