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:
Hans-Christoph Steiner 2021-04-14 22:54:48 +02:00
parent 0c807275a2
commit 5346ea3c19
2 changed files with 3 additions and 2 deletions

View File

@ -193,7 +193,8 @@ lint_mypy:
script:
- pip install mypy
- pip install -e .[test]
- mypy
# exclude vendored file
- mypy --exclude fdroidserver/apksigcopier.py
fedora_latest:
image: fedora:latest

View File

@ -96,7 +96,7 @@ class ZipError(APKSigCopierError):
class ReproducibleZipInfo(zipfile.ZipInfo):
"""Reproducible ZipInfo hack."""
_override = {} # type: Dict[str, Any]
_override = {}
def __init__(self, zinfo, **override):
if override: