diff options
Diffstat (limited to 'searx/weather.py')
| -rw-r--r-- | searx/weather.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/searx/weather.py b/searx/weather.py index 30b5bfeee..449b261ae 100644 --- a/searx/weather.py +++ b/searx/weather.py @@ -2,6 +2,10 @@ """Implementations used for weather conditions and forecast.""" # pylint: disable=too-few-public-methods +# Struct fields aren't discovered in Python 3.14 +# - https://github.com/searxng/searxng/issues/5284 +from __future__ import annotations + __all__ = [ "symbol_url", "Temperature", |