summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Davis <daviddavis@users.noreply.github.com>2023-05-15 23:43:03 -0400
committerGitHub <noreply@github.com>2023-05-16 09:43:03 +0600
commit1c272817a217c03534feb98004f3f6bd10512e07 (patch)
tree9cf160b76e487e751f47c4d99dea02cd59fffc9e
parentd7c54dbebdab2ae17f7948fd4432b15e1bb82852 (diff)
downloadpyjwt-1c272817a217c03534feb98004f3f6bd10512e07.tar.gz
Export PyJWKClientConnectionError class (#887)
-rw-r--r--jwt/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/jwt/__init__.py b/jwt/__init__.py
index 914b4db..151f18d 100644
--- a/jwt/__init__.py
+++ b/jwt/__init__.py
@@ -19,6 +19,7 @@ from .exceptions import (
InvalidSignatureError,
InvalidTokenError,
MissingRequiredClaimError,
+ PyJWKClientConnectionError,
PyJWKClientError,
PyJWKError,
PyJWKSetError,
@@ -65,6 +66,7 @@ __all__ = [
"InvalidSignatureError",
"InvalidTokenError",
"MissingRequiredClaimError",
+ "PyJWKClientConnectionError",
"PyJWKClientError",
"PyJWKError",
"PyJWKSetError",