Browse Source

[fix] drop Python 2: use collections.abc.Iterable instead of collections.Iterable

Alexandre Flament 4 years ago
parent
commit
8659212f5a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      searx/engines/json_engine.py

+ 1 - 1
searx/engines/json_engine.py

@@ -1,4 +1,4 @@
-from collections import Iterable
+from collections.abc import Iterable
 from json import loads
 from json import loads
 from urllib.parse import urlencode
 from urllib.parse import urlencode
 from searx.utils import to_string
 from searx.utils import to_string