Skip to content

Minor docstring typo/grammar correction #687

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 15, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions influxdb_client/client/influxdb_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,15 +265,15 @@ def retry(self, conf: (str, str, str), data: str, exception: InfluxDBError):

:param write_options: Write API configuration
:param point_settings: settings to store default tags
:key success_callback: The callable ``callback`` to run after successfully writen a batch.
:key success_callback: The callable ``callback`` to run after having successfully written a batch.

The callable must accept two arguments:
- `Tuple`: ``(bucket, organization, precision)``
- `str`: written data

**[batching mode]**

:key error_callback: The callable ``callback`` to run after unsuccessfully writen a batch.
:key error_callback: The callable ``callback`` to run after having unsuccessfully written a batch.

The callable must accept three arguments:
- `Tuple`: ``(bucket, organization, precision)``
Expand Down
Loading