diff options
Diffstat (limited to 'searx/favicons/proxy.py')
| -rw-r--r-- | searx/favicons/proxy.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/searx/favicons/proxy.py b/searx/favicons/proxy.py index 1346d19b0..6a0867458 100644 --- a/searx/favicons/proxy.py +++ b/searx/favicons/proxy.py @@ -1,6 +1,9 @@ # SPDX-License-Identifier: AGPL-3.0-or-later """Implementations for a favicon proxy""" +# Struct fields aren't discovered in Python 3.14 +# - https://github.com/searxng/searxng/issues/5284 +from __future__ import annotations from typing import Callable |