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 25c9142 commit ee7db0cCopy full SHA for ee7db0c
ellar_jwt/services.py
@@ -98,9 +98,9 @@ def decode(
98
"""
99
try:
100
_jwt_config = self._merge_configurations(**jwt_config)
101
- return jwt.decode(
+ return jwt.decode( # type:ignore[no-any-return]
102
token,
103
- self.get_verifying_key(token, _jwt_config), # type:ignore[arg-type]
+ self.get_verifying_key(token, _jwt_config),
104
algorithms=[_jwt_config.algorithm],
105
audience=_jwt_config.audience,
106
issuer=_jwt_config.issuer,
0 commit comments