Skip to content
This repository has been archived by the owner on Jul 11, 2024. It is now read-only.

Commit

Permalink
fix mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
deadc0de6 committed Jan 4, 2024
1 parent 9d6bba0 commit 5301126
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion catcli/catcli.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import os
import datetime
from typing import Dict, Any, List
from docopt import docopt # type: ignore[import-untyped]
from docopt import docopt

# local imports
from catcli.version import __version__ as VERSION
Expand Down
2 changes: 1 addition & 1 deletion tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ pylint -sn setup.py

# mypy
echo "[+] mypy"
mypy --strict catcli/
mypy --strict --disable-error-code=import-untyped catcli/

set +e
grep -R 'TODO' catcli/ && echo "TODO found" && exit 1
Expand Down

0 comments on commit 5301126

Please sign in to comment.