Skip to content

Commit

Permalink
Merge pull request #1502 from pataiji/master
Browse files Browse the repository at this point in the history
Fix docstring about BackOffHTTPClient
  • Loading branch information
alifeee authored Aug 8, 2024
2 parents 68bd33d + 922c51c commit 5bde86e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gspread/http_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ def import_csv(self, file_id: str, data: Union[str, bytes]) -> Any:


class BackOffHTTPClient(HTTPClient):
"""BackoffClient is a gspread client with exponential
"""BackOffHTTPClient is a http client with exponential
backoff retries.
In case a request fails due to some API rate limits,
Expand All @@ -524,12 +524,12 @@ class BackOffHTTPClient(HTTPClient):
prevent the application from failing (by raising an APIError exception).
.. Warning::
This Client is not production ready yet.
This HTTPClient is not production ready yet.
Use it at your own risk !
.. note::
To use with the `auth` module, make sure to pass this backoff
client factory using the ``client_factory`` parameter of the
http client using the ``http_client`` parameter of the
method used.
.. note::
Expand Down

0 comments on commit 5bde86e

Please sign in to comment.