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/data | |
| parent | 57b9673efb1b4fd18a3ac15e26da642201e2cd33 (diff) | |
[mod] drop: from __future__ import annotations
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'searx/data')
| -rw-r--r-- | searx/data/core.py | 2 | ||||
| -rw-r--r-- | searx/data/currencies.py | 1 | ||||
| -rw-r--r-- | searx/data/tracker_patterns.py | 1 |
3 files changed, 1 insertions, 3 deletions
diff --git a/searx/data/core.py b/searx/data/core.py index 32a23e48b..b057a8f55 100644 --- a/searx/data/core.py +++ b/searx/data/core.py @@ -1,6 +1,6 @@ # SPDX-License-Identifier: AGPL-3.0-or-later # pylint: disable=missing-module-docstring -from __future__ import annotations + import pathlib diff --git a/searx/data/currencies.py b/searx/data/currencies.py index 504f43ae5..3378a5022 100644 --- a/searx/data/currencies.py +++ b/searx/data/currencies.py @@ -1,7 +1,6 @@ # SPDX-License-Identifier: AGPL-3.0-or-later """Simple implementation to store currencies data in a SQL database.""" -from __future__ import annotations __all__ = ["CurrenciesDB"] diff --git a/searx/data/tracker_patterns.py b/searx/data/tracker_patterns.py index 544031f4e..2966c0f31 100644 --- a/searx/data/tracker_patterns.py +++ b/searx/data/tracker_patterns.py @@ -1,7 +1,6 @@ # SPDX-License-Identifier: AGPL-3.0-or-later """Simple implementation to store TrackerPatterns data in a SQL database.""" -from __future__ import annotations import typing __all__ = ["TrackerPatternsDB"] |