We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71c6520 commit 0080960Copy full SHA for 0080960
src/cryptojwt/jwt.py
@@ -374,10 +374,7 @@ def unpack(self, token):
374
else:
375
_msg_cls = self.iss2msg_cls.get(_info["iss"], None)
376
if not _msg_cls:
377
- LOGGER.debug(
378
- "both msg_cls and iss2msg are None "
379
- f"for the issuer {_info['iss']}"
380
- )
+ LOGGER.debug("both msg_cls and iss2msg are None " f"for the issuer {_info['iss']}")
381
382
if _msg_cls:
383
vp_args = {"skew": self.skew}
0 commit comments