Fixed type hinting stuff

This commit is contained in:
Manuel Cortez 2022-02-19 16:11:04 -06:00
parent a338fdf2b8
commit da77f77777
No known key found for this signature in database
GPG Key ID: 262CC30FA01B5CBF
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ test:mipy:
image: python:3.7 image: python:3.7
interruptible: true interruptible: true
script: script:
- 'pip install --upgrade mypy pytest' - 'pip install --upgrade mypy pytest types-requests'
- 'pip install --upgrade -r requirements.txt' - 'pip install --upgrade -r requirements.txt'
- 'mypy updater' - 'mypy updater'
only: only:

View File

@ -33,7 +33,7 @@ import wx # type: ignore
import logging import logging
from typing import Optional, Any, cast from typing import Optional, Any, cast
from pubsub import pub # type: ignore 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 platform_utils import paths # type: ignore
from . import core, utils from . import core, utils