You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/kili/presentation/client/asset.py
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -314,8 +314,8 @@ def assets(
314
314
label_created_at_lt: Deprecated. Use `label_created_at_lte` instead.
315
315
label_honeypot_mark_gt: Deprecated. Use `label_honeypot_mark_gte` instead.
316
316
label_honeypot_mark_lt: Deprecated. Use `label_honeypot_mark_lte` instead.
317
-
updated_at_gte: Returned assets should have a label whose update date is greater or equal to this date.
318
-
updated_at_lte: Returned assets should have a label whose update date is lower or equal to this date.
317
+
updated_at_gte: Returned assets should have an update date that is greater or equal to this date. The update date represents the last time a modification has been done at the asset level.
318
+
updated_at_lte: Returned assets should have an update date that is lower or equal to this date. The update date represents the last time a modification has been done at the asset level.
319
319
format: If equal to 'pandas', returns a pandas DataFrame
320
320
disable_tqdm: If `True`, the progress bar will be disabled
321
321
as_generator: If `True`, a generator on the assets is returned.
@@ -626,8 +626,8 @@ def count_assets(
626
626
label_honeypot_mark_gt: Deprecated. Use `label_honeypot_mark_gte` instead.
627
627
label_honeypot_mark_lt: Deprecated. Use `label_honeypot_mark_lte` instead.
628
628
skipped: Returned assets should be skipped.
629
-
updated_at_gte: Returned assets should have a label whose update date is greated or equal to this date.
630
-
updated_at_lte: Returned assets should have a label whose update date is lower or equal to this date.
629
+
updated_at_gte: Returned assets should have an update date that is greated or equal to this date. The update date represents the last time a modification has been done at the asset level.
630
+
updated_at_lte: Returned assets should have an update date that is lower or equal to this date. The update date represents the last time a modification has been done at the asset level.
631
631
label_category_search: Returned assets should have a label that follows this category search query.
632
632
created_at_gte: Returned assets should have their import date greater or equal to this date.
633
633
created_at_lte: Returned assets should have their import date lower or equal to this date.
0 commit comments