We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef12c9e commit 21ae7d0Copy full SHA for 21ae7d0
tenacity/wait.py
@@ -98,10 +98,10 @@ class wait_chain(wait_base):
98
99
@retry(wait=wait_chain(*[wait_fixed(1) for i in range(3)] +
100
[wait_fixed(2) for j in range(5)] +
101
- [wait_fixed(5) for k in range(4)))
+ [wait_fixed(5) for k in range(4)]))
102
def wait_chained():
103
- print("Wait 1s for 3 attempts, 2s for 5 attempts and 5s
104
- thereafter.")
+ print("Wait 1s for 3 attempts, 2s for 5 attempts and 5s "
+ "thereafter.")
105
"""
106
107
def __init__(self, *strategies: wait_base) -> None:
0 commit comments