Skip to content

Commit

Permalink
Refrain from adding Details to backoff namespace
Browse files Browse the repository at this point in the history
If needed, I want to make sure we put this in the right place. There
may ultimately be some other types which it would be helpful to expose
as well, and in that case I think it might be better to have a typing
submodule where only these types are exposed.
  • Loading branch information
bgreen-litl committed Oct 5, 2022
1 parent 15613af commit 77f4209
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions backoff/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
"""
from backoff._decorator import on_exception, on_predicate
from backoff._jitter import full_jitter, random_jitter
from backoff._typing import Details
from backoff._wait_gen import constant, expo, fibo, runtime

__all__ = [
Expand All @@ -26,7 +25,6 @@
'runtime',
'full_jitter',
'random_jitter',
'Details',
]

__version__ = "2.1.2"

0 comments on commit 77f4209

Please sign in to comment.