diff options
Diffstat (limited to 'searx/cache.py')
| -rw-r--r-- | searx/cache.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/searx/cache.py b/searx/cache.py index ea58c9328..062f34768 100644 --- a/searx/cache.py +++ b/searx/cache.py @@ -5,6 +5,10 @@ ---- """ +# Struct fields aren't discovered in Python 3.14 +# - https://github.com/searxng/searxng/issues/5284 +from __future__ import annotations + __all__ = ["ExpireCacheCfg", "ExpireCacheStats", "ExpireCache", "ExpireCacheSQLite"] import abc |