diff options
author | Alexandre Flament <alex@al-f.net> | 2024-03-02 13:10:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-02 13:10:31 +0100 |
commit | 38fdd2288a8c5ffbd94c6068bc4ef6ec9a3df415 (patch) | |
tree | becee542e4921a5eda6c12b6201b88b7e14de58a /searx/search | |
parent | 1892a87fd2139252b80f48f4e079a7b37b2b55c3 (diff) | |
download | searxng-38fdd2288a8c5ffbd94c6068bc4ef6ec9a3df415.tar.gz searxng-38fdd2288a8c5ffbd94c6068bc4ef6ec9a3df415.zip |
Drop typing-extensions dependency (#3265)
Co-authored-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'searx/search')
-rw-r--r-- | searx/search/checker/background.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/searx/search/checker/background.py b/searx/search/checker/background.py index aec2a1790..f16e4c25c 100644 --- a/searx/search/checker/background.py +++ b/searx/search/checker/background.py @@ -8,8 +8,7 @@ import time import threading import os import signal -from typing import Dict, Union, List, Any, Tuple, Optional -from typing_extensions import TypedDict, Literal +from typing import Any, Dict, List, Literal, Optional, Tuple, TypedDict, Union import redis.exceptions |