From 343dc8d91d9e15dba83aebf6879881f733f0ff1f Mon Sep 17 00:00:00 2001 From: Joscha Feth Date: Thu, 28 Nov 2024 23:50:28 +1100 Subject: [PATCH] Update dlt/sources/helpers/rest_client/client.py Co-authored-by: Anton Burnashev --- dlt/sources/helpers/rest_client/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlt/sources/helpers/rest_client/client.py b/dlt/sources/helpers/rest_client/client.py index 707dfca8c8..a619a05a00 100644 --- a/dlt/sources/helpers/rest_client/client.py +++ b/dlt/sources/helpers/rest_client/client.py @@ -58,7 +58,7 @@ class RESTClient: auth (Optional[AuthBase]): Authentication configuration for all requests. paginator (Optional[BasePaginator]): Default paginator for handling paginated responses. data_selector (Optional[jsonpath.TJsonPath]): JSONPath selector for extracting data from responses. - Only used when paginating. Use `extract_response` for other requests. + Only used in `paginate`. session (BaseSession): HTTP session for making requests. paginator_factory (Optional[PaginatorFactory]): Factory for creating paginator instances, used for detecting paginators.