We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f6d23d commit 094c089Copy full SHA for 094c089
labelbox/schema/batch.py
@@ -1,5 +1,3 @@
1
-from typing import Dict, List
2
-
3
from labelbox.orm.db_object import DbObject
4
from labelbox.orm.model import Field, Relationship
5
@@ -25,15 +23,5 @@ class Batch(DbObject):
25
23
26
24
# Relationships
27
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"""
32
33
- gql = """query
34
35
- """
36
37
- self.client.execute()
38
39
- return
+ created_by = Relationship.ToOne("User")
0 commit comments