2929from labelbox .schema .labeling_frontend import LabelingFrontend
3030from labelbox .schema .model import Model
3131from labelbox .schema .model_run import ModelRun
32- from labelbox .schema .ontology import Ontology , Tool , Classification
32+ from labelbox .schema .ontology import Ontology , Tool , Classification , FeatureSchema
3333from labelbox .schema .organization import Organization
3434from labelbox .schema .user import User
3535from labelbox .schema .project import Project
@@ -945,7 +945,7 @@ def delete_unused_ontology(self, ontology_id: str) -> None:
945945 str (response .json ()['message' ]))
946946
947947 def update_feature_schema_title (self , feature_schema_id : str ,
948- title : str ) -> Entity . FeatureSchema :
948+ title : str ) -> FeatureSchema :
949949 """
950950 Updates a title of a feature schema
951951 Args:
@@ -972,8 +972,7 @@ def update_feature_schema_title(self, feature_schema_id: str,
972972 "Failed to update the feature schema, message: " +
973973 str (response .json ()['message' ]))
974974
975- def upsert_feature_schema (self ,
976- feature_schema : Dict ) -> Entity .FeatureSchema :
975+ def upsert_feature_schema (self , feature_schema : Dict ) -> FeatureSchema :
977976 """
978977 Upserts a feature schema
979978 Args:
0 commit comments