Commit 0b4af73
authored
Update index.rst (#339)
```python
>>> decoded_sig = base64url_decode(encoded_sig)
Traceback (most recent call last):
(...)
File "(...)/python3.11/site-packages/jose/utils.py", line 76, in base64url_decode
input += b"=" * (4 - rem)
TypeError: can only concatenate str (not "bytes") to str
>>> decoded_sig = base64url_decode(encoded_sig.encode())
>>>
```1 parent 962e1c7 commit 0b4af73
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
29 | | - | |
| 29 | + | |
30 | 30 | | |
31 | 31 | | |
32 | 32 | | |
| |||
0 commit comments