From 9311800099c165b4442d9b050ef164f1d37c2333 Mon Sep 17 00:00:00 2001 From: peppelinux Date: Sat, 12 Jun 2021 12:59:55 +0200 Subject: [PATCH] fix: args collides with pdb command --- src/oidcmsg/context.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/oidcmsg/context.py b/src/oidcmsg/context.py index f4e9e5a..facd91b 100644 --- a/src/oidcmsg/context.py +++ b/src/oidcmsg/context.py @@ -27,15 +27,14 @@ def __init__(self, config=None, keyjar=None, entity_id=""): ImpExp.__init__(self) if config is None: config = {} - self.issuer = entity_id self.keyjar = self._keyjar(keyjar, conf=config, entity_id=entity_id) def _keyjar(self, keyjar=None, conf=None, entity_id=""): if keyjar is None: if "keys" in conf: - args = {k: v for k, v in conf["keys"].items() if k != "uri_path"} - _keyjar = init_key_jar(**args) + keys_args = {k: v for k, v in conf["keys"].items() if k != "uri_path"} + _keyjar = init_key_jar(**keys_args) else: _keyjar = KeyJar() if "jwks" in conf: