From b767752d0cdefb6c5f41350c15fcdb50f34d2bfa Mon Sep 17 00:00:00 2001 From: Martin Fischer Date: Mon, 24 Jan 2022 11:44:18 +0100 Subject: [pyright:basic] searx.webapp --- searx/network/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'searx/network') diff --git a/searx/network/__init__.py b/searx/network/__init__.py index 7d02a0014..ced76243d 100644 --- a/searx/network/__init__.py +++ b/searx/network/__init__.py @@ -7,6 +7,7 @@ import threading import concurrent.futures from types import MethodType from timeit import default_timer +from typing import Iterable, Tuple import httpx import anyio @@ -210,7 +211,7 @@ def _close_response_method(self): continue -def stream(method, url, **kwargs): +def stream(method, url, **kwargs) -> Tuple[httpx.Response, Iterable[bytes]]: """Replace httpx.stream. Usage: -- cgit v1.2.3-54-g00ecf