Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

Commit 0825881

Browse files
committed
Removed unnecessary function.
1 parent 6c69ec1 commit 0825881

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

Diff for: src/oidcmsg/impexp.py

-14
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,12 @@
1-
import copy
21
from typing import List
32
from typing import Optional
4-
from urllib.parse import quote_plus
53

64
from cryptojwt.utils import importer
75
from cryptojwt.utils import qualified_name
86

97
from oidcmsg.message import Message
108

119

12-
def add_issuer(conf, issuer):
13-
res = {}
14-
for key, val in conf.items():
15-
if key == 'abstract_storage_cls':
16-
res[key] = val
17-
else:
18-
_val = copy.copy(val)
19-
_val['issuer'] = quote_plus(issuer)
20-
res[key] = _val
21-
return res
22-
23-
2410
class ImpExp:
2511
parameter = {}
2612

0 commit comments

Comments
 (0)