Skip to content

Commit a22ba4b

Browse files
stephenpaulgerjpadilla
authored andcommitted
Add missing close quote. (jpadilla#327)
1 parent a120518 commit a22ba4b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/usage.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Encoding & Decoding Tokens with RS256 (RSA)
2121
>>import jwt
2222
>>private_key = b'-----BEGIN PRIVATE KEY-----\nMIGEAgEAMBAGByqGSM49AgEGBS...'
2323
>>public_key = b'-----BEGIN PUBLIC KEY-----\nMHYwEAYHKoZIzj0CAQYFK4EEAC...'
24-
>>encoded = jwt.encode({'some': 'payload'}, private_key, algorithm='RS256)
24+
>>encoded = jwt.encode({'some': 'payload'}, private_key, algorithm='RS256')
2525
'eyJhbGciOiJIU...'
2626
>>decoded = jwt.decode(encoded, public_key, algorithms='RS256')
2727
{'some': 'payload'}

0 commit comments

Comments
 (0)