diff options
| author | Markus Heiser <markus.heiser@darmarit.de> | 2025-08-24 15:16:46 +0200 |
|---|---|---|
| committer | Markus Heiser <markus.heiser@darmarIT.de> | 2025-09-03 13:37:36 +0200 |
| commit | f24d85bc4be732b8edb2157ef4ecf35d380d2b45 (patch) | |
| tree | 290dbfe99502776e358b9256eebc02004767f1f0 /searx/favicons | |
| parent | 57b9673efb1b4fd18a3ac15e26da642201e2cd33 (diff) | |
[mod] drop: from __future__ import annotations
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'searx/favicons')
| -rw-r--r-- | searx/favicons/__init__.py | 1 | ||||
| -rw-r--r-- | searx/favicons/config.py | 1 | ||||
| -rw-r--r-- | searx/favicons/proxy.py | 1 | ||||
| -rw-r--r-- | searx/favicons/resolvers.py | 1 |
4 files changed, 0 insertions, 4 deletions
diff --git a/searx/favicons/__init__.py b/searx/favicons/__init__.py index 4e0aaaf3e..921cda6a3 100644 --- a/searx/favicons/__init__.py +++ b/searx/favicons/__init__.py @@ -8,7 +8,6 @@ an example in which the command line is called in the development environment:: (py3) python -m searx.favicons --help """ -from __future__ import annotations __all__ = ["init", "favicon_url", "favicon_proxy"] diff --git a/searx/favicons/config.py b/searx/favicons/config.py index 33aa157d6..c22e1f3f0 100644 --- a/searx/favicons/config.py +++ b/searx/favicons/config.py @@ -1,7 +1,6 @@ # SPDX-License-Identifier: AGPL-3.0-or-later # pylint: disable=missing-module-docstring -from __future__ import annotations import pathlib import msgspec diff --git a/searx/favicons/proxy.py b/searx/favicons/proxy.py index b237bdd72..1346d19b0 100644 --- a/searx/favicons/proxy.py +++ b/searx/favicons/proxy.py @@ -1,7 +1,6 @@ # SPDX-License-Identifier: AGPL-3.0-or-later """Implementations for a favicon proxy""" -from __future__ import annotations from typing import Callable diff --git a/searx/favicons/resolvers.py b/searx/favicons/resolvers.py index bde5ae2b8..1c9e192b6 100644 --- a/searx/favicons/resolvers.py +++ b/searx/favicons/resolvers.py @@ -6,7 +6,6 @@ timeout``) and returns a tuple ``(data, mime)``. """ -from __future__ import annotations __all__ = ["DEFAULT_RESOLVER_MAP", "allesedv", "duckduckgo", "google", "yandex"] |