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 254aafa commit 58d1614Copy full SHA for 58d1614
labelbox/schema/slice.py
@@ -1,3 +1,5 @@
1
+from typing import List
2
+
3
from labelbox.orm.db_object import DbObject
4
from labelbox.orm.model import Field
5
@@ -9,7 +11,7 @@ class Slice(DbObject):
9
11
updated_at = Field.DateTime("updated_at")
10
12
filter = Field.Json("filter")
13
- def get_data_row_ids(self) -> list[str]:
14
+ def get_data_row_ids(self) -> List[str]:
15
"""
16
Fetches all data row ids that match this Slice
17
0 commit comments