Skip to content
This repository was archived by the owner on Aug 8, 2025. It is now read-only.

Commit 77f4209

Browse files
committed
Refrain from adding Details to backoff namespace
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.
1 parent 15613af commit 77f4209

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

backoff/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
"""
1515
from backoff._decorator import on_exception, on_predicate
1616
from backoff._jitter import full_jitter, random_jitter
17-
from backoff._typing import Details
1817
from backoff._wait_gen import constant, expo, fibo, runtime
1918

2019
__all__ = [
@@ -26,7 +25,6 @@
2625
'runtime',
2726
'full_jitter',
2827
'random_jitter',
29-
'Details',
3028
]
3129

3230
__version__ = "2.1.2"

0 commit comments

Comments
 (0)