diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2376fd7..27352ab 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -8,7 +8,7 @@ test:mipy: image: python:3.7 interruptible: true script: - - 'pip install --upgrade mypy pytest' + - 'pip install --upgrade mypy pytest types-requests' - 'pip install --upgrade -r requirements.txt' - 'mypy updater' only: diff --git a/updater/wxupdater.py b/updater/wxupdater.py index 916c53d..9afd87f 100644 --- a/updater/wxupdater.py +++ b/updater/wxupdater.py @@ -33,7 +33,7 @@ import wx # type: ignore import logging from typing import Optional, Any, cast from pubsub import pub # type: ignore -from pubsub.core.topicexc import TopicNameError +from pubsub.core.topicexc import TopicNameError # type: ignore from platform_utils import paths # type: ignore from . import core, utils