Skip to content

Commit 0a3d5ad

Browse files
authored
Merge pull request #196 from Labelbox/utkarsh/lf-projects-removal
[WORK-1] remove labelingFrontend.projects from SDK
2 parents 2a4147f + 9f954d6 commit 0a3d5ad

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

labelbox/schema/labeling_frontend.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +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-
2623

2724
class LabelingFrontendOptions(DbObject):
2825
""" Label interface options.

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)