Skip to content

Commit 58d1614

Browse files
committed
fix typing
1 parent 254aafa commit 58d1614

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

labelbox/schema/slice.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from typing import List
2+
13
from labelbox.orm.db_object import DbObject
24
from labelbox.orm.model import Field
35

@@ -9,7 +11,7 @@ class Slice(DbObject):
911
updated_at = Field.DateTime("updated_at")
1012
filter = Field.Json("filter")
1113

12-
def get_data_row_ids(self) -> list[str]:
14+
def get_data_row_ids(self) -> List[str]:
1315
"""
1416
Fetches all data row ids that match this Slice
1517

0 commit comments

Comments
 (0)