[fix] pylint issue in py3.10

searxng_extra/update/update_firefox_version.py:16:0: W0402:
Uses of a deprecated module 'distutils.version' (deprecated-module)

[1] https://github.com/searxng/searxng/pull/1007

Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
This commit is contained in:
Markus Heiser 2022-03-25 08:39:40 +01:00
parent bea4a46368
commit 34fd2021d8
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ import json
import re import re
from os.path import join from os.path import join
from urllib.parse import urlparse, urljoin from urllib.parse import urlparse, urljoin
from distutils.version import LooseVersion from distutils.version import LooseVersion # pylint: disable=deprecated-module
import requests import requests
from lxml import html from lxml import html