We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ee6ba7 commit 4085ad4Copy full SHA for 4085ad4
src/cryptojwt/serialize/item.py
@@ -1,6 +1,4 @@
1
import json
2
-from urllib.parse import quote_plus
3
-from urllib.parse import unquote_plus
4
5
from cryptojwt import key_issuer
6
@@ -16,12 +14,3 @@ def deserialize(self, spec: str) -> key_issuer.KeyIssuer:
16
14
_dict = json.loads(spec)
17
15
issuer = key_issuer.KeyIssuer().load(_dict)
18
return issuer
19
-
20
21
-class QUOTE:
22
- @staticmethod
23
- def serialize(item: str) -> str:
24
- return quote_plus(item)
25
26
- def deserialize(self, spec: str) -> str:
27
- return unquote_plus(spec)
0 commit comments