summaryrefslogtreecommitdiff
path: root/searx/search
diff options
context:
space:
mode:
authorAlexandre Flament <alex@al-f.net>2024-03-02 13:10:31 +0100
committerGitHub <noreply@github.com>2024-03-02 13:10:31 +0100
commit38fdd2288a8c5ffbd94c6068bc4ef6ec9a3df415 (patch)
treebecee542e4921a5eda6c12b6201b88b7e14de58a /searx/search
parent1892a87fd2139252b80f48f4e079a7b37b2b55c3 (diff)
downloadsearxng-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.py3
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