mirror of https://github.com/MISP/PyMISP
fix: Make mypy happy
parent
a3634742b3
commit
75cb39e0ca
|
@ -102,15 +102,18 @@ def brotli_supported() -> bool:
|
||||||
"""
|
"""
|
||||||
Returns whether Brotli compression is supported
|
Returns whether Brotli compression is supported
|
||||||
"""
|
"""
|
||||||
|
major: int
|
||||||
|
minor: int
|
||||||
|
patch: int
|
||||||
|
|
||||||
# urllib >= 1.25.1 includes brotli support
|
# urllib >= 1.25.1 includes brotli support
|
||||||
version_splitted = urllib3.__version__.split('.') # noqa: F811
|
version_splitted = urllib3.__version__.split('.') # noqa: F811
|
||||||
if len(version_splitted) == 2:
|
if len(version_splitted) == 2:
|
||||||
major, minor = version_splitted
|
major, minor = version_splitted # type: ignore
|
||||||
patch = 0
|
patch = 0
|
||||||
else:
|
else:
|
||||||
major, minor, patch = version_splitted
|
major, minor, patch = version_splitted # type: ignore
|
||||||
major, minor, patch = int(major), int(minor), int(patch)
|
major, minor, patch = int(major), int(minor), int(patch) # type: ignore
|
||||||
urllib3_with_brotli = (major == 1 and ((minor == 25 and patch >= 1) or (minor >= 26))) or major >= 2
|
urllib3_with_brotli = (major == 1 and ((minor == 25 and patch >= 1) or (minor >= 26))) or major >= 2
|
||||||
|
|
||||||
if not urllib3_with_brotli:
|
if not urllib3_with_brotli:
|
||||||
|
|
Loading…
Reference in New Issue