mirror of
https://github.com/searxng/searxng.git
synced 2024-11-13 13:41:03 +00:00
[mod] remove py 3.6 leftovers
This commit is contained in:
parent
37ec668ae1
commit
5468d97d39
1 changed files with 3 additions and 7 deletions
|
@ -11,16 +11,12 @@ from typing import Any, Dict
|
|||
import httpx
|
||||
from httpx_socks import AsyncProxyTransport
|
||||
from python_socks import parse_proxy_url, ProxyConnectionError, ProxyTimeoutError, ProxyError
|
||||
import uvloop
|
||||
|
||||
from searx import logger
|
||||
|
||||
# Optional uvloop (support Python 3.6)
|
||||
try:
|
||||
import uvloop
|
||||
except ImportError:
|
||||
pass
|
||||
else:
|
||||
uvloop.install()
|
||||
|
||||
uvloop.install()
|
||||
|
||||
|
||||
logger = logger.getChild('searx.network.client')
|
||||
|
|
Loading…
Reference in a new issue