Skip to content

Commit ad58fdf

Browse files
clean comments
1 parent a592eab commit ad58fdf

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

client.py

-3
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,6 @@ async def decode(self, token: str, nonce: str = '', audience: str = '') -> Dict[
9999
async with httpx.AsyncClient() as client:
100100
keyset = (await client.get(self.jwks_uri)).json()['keys']
101101
signing_key = jwt.algorithms.RSAAlgorithm.from_jwk(next(key for key in keyset if key['kid'] == header['kid']))
102-
# k = next(key for key in keyset if key['kid'] == header['kid'])
103-
# print(k)
104-
# jwt.algorithms.RSAAlgorithm.from_jwk(dumps(k))
105102

106103
data = jwt.decode(
107104
token,

0 commit comments

Comments
 (0)