"Fix" a flaky test and cleanup an unused import.
authorScott <[email protected]>
Thu, 13 Jan 2022 04:59:00 +0000 (20:59 -0800)
committerScott <[email protected]>
Thu, 13 Jan 2022 04:59:00 +0000 (20:59 -0800)
decorator_utils.py
persistent.py

index 752fb919df35dc8ff5f93aba672b9d10bc1efb19..eb5a0c9b9ff581fc3c4398e1e1ab186ec3d00978 100644 (file)
@@ -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
 
     """
index 36ae29c9271eaaa678cb7f4d525b1c5d05ead0f8..8829d6de657c213845356b7c32caa2a644a1eb54 100644 (file)
@@ -7,7 +7,6 @@ import enum
 import functools
 import logging
 from typing import Any
-import warnings
 
 import file_utils