mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-20 13:50:12 +01:00
gitlab-ci: prevent dualing linters: pyflakes vs mypy
* pyflakes says: "typing.Dict' imported but unused" * mypy says: "Name 'Dict' is not defined"
This commit is contained in:
parent
0c807275a2
commit
5346ea3c19
@ -193,7 +193,8 @@ lint_mypy:
|
|||||||
script:
|
script:
|
||||||
- pip install mypy
|
- pip install mypy
|
||||||
- pip install -e .[test]
|
- pip install -e .[test]
|
||||||
- mypy
|
# exclude vendored file
|
||||||
|
- mypy --exclude fdroidserver/apksigcopier.py
|
||||||
|
|
||||||
fedora_latest:
|
fedora_latest:
|
||||||
image: fedora:latest
|
image: fedora:latest
|
||||||
|
@ -96,7 +96,7 @@ class ZipError(APKSigCopierError):
|
|||||||
class ReproducibleZipInfo(zipfile.ZipInfo):
|
class ReproducibleZipInfo(zipfile.ZipInfo):
|
||||||
"""Reproducible ZipInfo hack."""
|
"""Reproducible ZipInfo hack."""
|
||||||
|
|
||||||
_override = {} # type: Dict[str, Any]
|
_override = {}
|
||||||
|
|
||||||
def __init__(self, zinfo, **override):
|
def __init__(self, zinfo, **override):
|
||||||
if override:
|
if override:
|
||||||
|
Loading…
Reference in New Issue
Block a user