summaryrefslogtreecommitdiff
path: root/decorator_utils.py
diff options
context:
space:
mode:
authorScott <[email protected]>2022-01-12 20:59:00 -0800
committerScott <[email protected]>2022-01-12 20:59:00 -0800
commit21562149bda41588b65e4553d216fd0103761811 (patch)
treeaeb5f710988a17e00eb491523cbc10d840984a16 /decorator_utils.py
parenta38d345b8b9348bab10c3e359997aadad814a6a1 (diff)
"Fix" a flaky test and cleanup an unused import.
Diffstat (limited to 'decorator_utils.py')
-rw-r--r--decorator_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/decorator_utils.py b/decorator_utils.py
index 752fb91..eb5a0c9 100644
--- a/decorator_utils.py
+++ b/decorator_utils.py
@@ -443,7 +443,7 @@ def retry_if_false(tries: int, *, delay_sec=3.0, backoff=2.0):
3
>>> dur > 2.0
True
- >>> dur < 2.2
+ >>> dur < 2.3
True
"""