From 1c272817a217c03534feb98004f3f6bd10512e07 Mon Sep 17 00:00:00 2001 From: David Davis Date: Mon, 15 May 2023 23:43:03 -0400 Subject: Export PyJWKClientConnectionError class (#887) --- jwt/__init__.py | 2 ++ 1 file changed, 2 insertions(+) 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", -- cgit v1.2.1