From: Scott Date: Thu, 13 Jan 2022 04:59:00 +0000 (-0800) Subject: "Fix" a flaky test and cleanup an unused import. X-Git-Url: https://wannabe.guru.org/gitweb/?a=commitdiff_plain;h=21562149bda41588b65e4553d216fd0103761811;p=python_utils.git "Fix" a flaky test and cleanup an unused import. --- 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 """ diff --git a/persistent.py b/persistent.py index 36ae29c..8829d6d 100644 --- 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