Skip to content

Commit f179cbd

Browse files
committed
Fix dataset types
1 parent 388d062 commit f179cbd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

labelbox/schema/dataset.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ class Dataset(DbObject, Updateable, Deletable):
6767

6868
def data_rows(
6969
self,
70-
from_cursor: str = None,
71-
where: Comparison = None,
70+
from_cursor: Optional[str] = None,
71+
where: Optional[Comparison] = None,
7272
) -> PaginatedCollection:
7373
"""
7474
Custom method to paginate data_rows via cursor.

0 commit comments

Comments
 (0)