diff options
Diffstat (limited to 'searx/favicons/cache.py')
| -rw-r--r-- | searx/favicons/cache.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/searx/favicons/cache.py b/searx/favicons/cache.py index f623ac3a7..d724e086c 100644 --- a/searx/favicons/cache.py +++ b/searx/favicons/cache.py @@ -17,6 +17,10 @@ """ +# Struct fields aren't discovered in Python 3.14 +# - https://github.com/searxng/searxng/issues/5284 +from __future__ import annotations + import typing as t import os |