diff options
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"] |