Skip to content

Commit caebde7

Browse files
authored
Merge pull request #774 from superannotateai/FRIDAY-3644
fix list_users docs
2 parents 5d03268 + 3c8a2ad commit caebde7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/superannotate/lib/app/interface/sdk_interface.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -511,15 +511,15 @@ def list_users(
511511
Scores and Custom Field Filtering:
512512
513513
- Scores and other custom fields must be prefixed with `custom_field__` .
514-
- Example: custom_field__Due_date__gte="1738281600" (filtering users whose Due date is after the given Unix timestamp).
514+
- Example: custom_field__Due_date__gte="1738281600" (filtering users whose Due_date is after the given Unix timestamp).
515515
516516
- **Text** custom field only works with the following filter params: __in, __notin, __contains
517517
- **Numeric** custom field only works with the following filter params: __in, __notin, __ne, __gt, __gte, __lt, __lte
518518
- **Single-select** custom field only works with the following filter params: __in, __notin, __contains
519519
- **Multi-select** custom field only works with the following filter params: __in, __notin
520520
- **Date picker** custom field only works with the following filter params: __gt, __gte, __lt, __lte
521521
522-
**If score name has a space, please use the following format to filter them**:
522+
**If custom field has a space, please use the following format to filter them**:
523523
::
524524
525525
user_filters = {"custom_field__accuracy score 30D__lt": 90}
@@ -3821,7 +3821,7 @@ def list_projects(
38213821
38223822
Custom Fields Filtering:
38233823
- Custom fields must be prefixed with `custom_field__`.
3824-
- Example: custom_field__Due_date__gte="1738281600" (filtering users whose Due date is after the given Unix timestamp).
3824+
- Example: custom_field__Due_date__gte="1738281600" (filtering users whose Due_date is after the given Unix timestamp).
38253825
- If include does not include "custom_fields" but filter contains custom_fields, an error will be returned
38263826
38273827
:type filters: ProjectFilters, optional

0 commit comments

Comments
 (0)