Improve run_tests.sh
[python_utils.git] / persistent.py
index 83e6900cc18471ae44503a14f3184a2827420190..8829d6de657c213845356b7c32caa2a644a1eb54 100644 (file)
@@ -7,7 +7,6 @@ import enum
 import functools
 import logging
 from typing import Any
-import warnings
 
 import file_utils
 
@@ -146,7 +145,6 @@ class persistent_autoloaded_singleton(object):
             if not self.instance:
                 msg = 'Loading from cache failed.'
                 logger.warning(msg)
-                warnings.warn(msg, stacklevel=2)
                 logger.debug(f'Attempting to instantiate {cls.__name__} directly.')
                 self.instance = cls(*args, **kwargs)
             else: