diff options
Diffstat (limited to 'discord/backoff.py')
| -rw-r--r-- | discord/backoff.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/discord/backoff.py b/discord/backoff.py index 22c15bcd..f538face 100644 --- a/discord/backoff.py +++ b/discord/backoff.py @@ -25,6 +25,10 @@ DEALINGS IN THE SOFTWARE. import time import random +__all__ = ( + 'ExponentialBackoff', +) + class ExponentialBackoff: """An implementation of the exponential backoff algorithm |