summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosé Padilla <jpadilla@webapplicate.com>2019-10-20 19:27:10 -0400
committerGitHub <noreply@github.com>2019-10-20 19:27:10 -0400
commit2d89f025464b7aed3fd37f3ca8a7bb21065e1585 (patch)
tree35f1e496255dd32db474dec9d0ee142c85387004
parent3a20892442b34c754b26550e05f7f856fb008c94 (diff)
downloadpyjwt-2d89f025464b7aed3fd37f3ca8a7bb21065e1585.tar.gz
Fix mypy errors (#449)
-rw-r--r--jwt/help.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/jwt/help.py b/jwt/help.py
index 55e39eb..573088d 100644
--- a/jwt/help.py
+++ b/jwt/help.py
@@ -7,14 +7,14 @@ import sys
from . import __version__ as pyjwt_version
try:
- import cryptography
+ import cryptography # type: ignore
except ImportError:
- cryptography = None
+ cryptography = None # type: ignore
try:
- import ecdsa
+ import ecdsa # type: ignore
except ImportError:
- ecdsa = None
+ ecdsa = None # type: ignore
def info():