projects
/
python_utils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a38d345
)
"Fix" a flaky test and cleanup an unused import.
author
Scott
<scott@wannabe.house>
Thu, 13 Jan 2022 04:59:00 +0000
(20:59 -0800)
committer
Scott
<scott@wannabe.house>
Thu, 13 Jan 2022 04:59:00 +0000
(20:59 -0800)
decorator_utils.py
patch
|
blob
|
history
persistent.py
patch
|
blob
|
history
diff --git
a/decorator_utils.py
b/decorator_utils.py
index 752fb919df35dc8ff5f93aba672b9d10bc1efb19..eb5a0c9b9ff581fc3c4398e1e1ab186ec3d00978 100644
(file)
--- 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
"""
diff --git
a/persistent.py
b/persistent.py
index 36ae29c9271eaaa678cb7f4d525b1c5d05ead0f8..8829d6de657c213845356b7c32caa2a644a1eb54 100644
(file)
--- a/
persistent.py
+++ b/
persistent.py
@@
-7,7
+7,6
@@
import enum
import functools
import logging
from typing import Any
-import warnings
import file_utils