[fix] minor type hint issues (#5459)

Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
This commit is contained in:
Markus Heiser
2025-11-20 18:35:43 +01:00
committed by GitHub
parent 21a4622f23
commit b299386d3e
3 changed files with 7 additions and 7 deletions

View File

@@ -30,7 +30,7 @@ import httpx
if typing.TYPE_CHECKING:
import searx.preferences
import searx.results
from searx.search.processors import ParamTypes
from searx.search.processors import OnlineParamTypes
class SXNG_Request(flask.Request):
@@ -83,4 +83,4 @@ class SXNG_Response(httpx.Response):
"""
ok: bool
search_params: "ParamTypes"
search_params: "OnlineParamTypes"