Skip to content

Commit

Permalink
Update backoff/_wait_gen.py
Browse files Browse the repository at this point in the history
  • Loading branch information
hauntsaninja committed Oct 3, 2022
1 parent c810d70 commit 52aef92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backoff/_wait_gen.py
Expand Up @@ -8,7 +8,7 @@ def expo(
base: float = 2,
factor: float = 1,
max_value: Optional[float] = None
) -> Generator[float, Any, None]:
) -> Generator[Optional[float], Any, None]:

"""Generator for exponential decay.
Expand Down

0 comments on commit 52aef92

Please sign in to comment.