Skip to content

Commit

Permalink
remove types :-(
Browse files Browse the repository at this point in the history
  • Loading branch information
jschlyter committed Sep 23, 2016
1 parent e0c636b commit 6028e01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jwkest/jwk.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ def x509_rsa_load(txt):
return [("rsa", import_rsa_key(txt))]


def key_from_jwk_dict(jwk_dict: dict, private: bool=True) -> Key:
def key_from_jwk_dict(jwk_dict, private=True):
"""Load JWK from dictionary"""
if jwk_dict['kty'] == 'EC':
if private:
Expand Down

0 comments on commit 6028e01

Please sign in to comment.