Skip to content

Commit 82373e9

Browse files
authored
[SDK-239] Fix dataset types (#1262)
1 parent da376b4 commit 82373e9

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
@@ -68,8 +68,8 @@ class Dataset(DbObject, Updateable, Deletable):
6868

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

0 commit comments

Comments
 (0)