Skip to content

Commit 094c089

Browse files
author
gdj0nes
committed
CHG: drop unused field
1 parent 0f6d23d commit 094c089

File tree

1 file changed

+1
-13
lines changed

1 file changed

+1
-13
lines changed

labelbox/schema/batch.py

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from typing import Dict, List
2-
31
from labelbox.orm.db_object import DbObject
42
from labelbox.orm.model import Field, Relationship
53

@@ -25,15 +23,5 @@ class Batch(DbObject):
2523

2624
# Relationships
2725
project = Relationship.ToOne("Project")
28-
created_by = Relationship.ToOne("User")
29-
30-
def export_data_rows(self) -> List[Dict]:
31-
"""Get the data rows associated with a batch"""
3226

33-
gql = """query
34-
35-
"""
36-
37-
self.client.execute()
38-
39-
return
27+
created_by = Relationship.ToOne("User")

0 commit comments

Comments
 (0)