From 8659212f5a3147bf71fa0205257709d11eebfe66 Mon Sep 17 00:00:00 2001 From: Alexandre Flament Date: Mon, 5 Oct 2020 12:52:08 +0200 Subject: [PATCH] [fix] drop Python 2: use collections.abc.Iterable instead of collections.Iterable --- searx/engines/json_engine.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/searx/engines/json_engine.py b/searx/engines/json_engine.py index 1e5c39ac..e2aa436c 100644 --- a/searx/engines/json_engine.py +++ b/searx/engines/json_engine.py @@ -1,4 +1,4 @@ -from collections import Iterable +from collections.abc import Iterable from json import loads from urllib.parse import urlencode from searx.utils import to_string