diff --git a/pyproject.toml b/pyproject.toml index b8e8c9dc..901c48bc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,7 +22,7 @@ exclude_lines = [ [tool.poetry] name = "cryptojwt" -version = "1.5.1" +version = "1.5.2" description = "Python implementation of JWT, JWE, JWS and JWK" authors = ["Roland Hedberg "] license = "Apache-2.0" diff --git a/src/cryptojwt/key_jar.py b/src/cryptojwt/key_jar.py index c6fee93b..f667ddb4 100755 --- a/src/cryptojwt/key_jar.py +++ b/src/cryptojwt/key_jar.py @@ -688,7 +688,12 @@ def dumps(self, exclude_issuers: Optional[List[str]] = None): _dict = self.dump(exclude_issuers=exclude_issuers) return json.dumps(_dict) - def load(self, info): + def load( + self, + info: dict, + init_args: Optional[dict] = None, + load_args: Optional[dict] = None, + ): """ :param info: A dictionary with the information