diff options
Diffstat (limited to 'discord/backoff.py')
| -rw-r--r-- | discord/backoff.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/discord/backoff.py b/discord/backoff.py index 01646f48..a4f3221c 100644 --- a/discord/backoff.py +++ b/discord/backoff.py @@ -41,10 +41,10 @@ class ExponentialBackoff: Parameters ---------- - base: int + base: :class:`int` The base delay in seconds. The first retry-delay will be up to this many seconds. - integral: bool + integral: :class:`bool` Set to True if whole periods of base is desirable, otherwise any number in between may be returned. """ |