Merge pull request #1010 from return42/fix-py3.10

[fix] pylint issue in py3.10
This commit is contained in:
Markus Heiser 2022-03-25 08:48:44 +01:00 committed by GitHub
commit 06718cee37
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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