Skip to content

Commit 23c5404

Browse files
committed
remove LF.projects from SDK
1 parent 2a4147f commit 23c5404

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

labelbox/schema/labeling_frontend.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,6 @@ class LabelingFrontend(DbObject):
2020
description = Field.String("description")
2121
iframe_url_path = Field.String("iframe_url_path")
2222

23-
# TODO other fields and relationships
24-
projects = Relationship.ToMany("Project", True)
25-
26-
2723
class LabelingFrontendOptions(DbObject):
2824
""" Label interface options.
2925

tests/integration/test_labeling_frontend.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ def test_labeling_frontend_connecting_to_project(project):
2222

2323
project.labeling_frontend.connect(frontend)
2424
assert project.labeling_frontend() == frontend
25-
assert project in set(frontend.projects())
2625

2726
project.labeling_frontend.disconnect(frontend)
2827
assert project.labeling_frontend() == None
29-
assert project not in set(frontend.projects())

0 commit comments

Comments
 (0)