Skip to content

Commit fcfa6c7

Browse files
committed
Merge pull request jpadilla#188 from sampwing/master
Fixed example usage
2 parents 9c551e7 + 756a12d commit fcfa6c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ $ pip install PyJWT
2222
>>> encoded = jwt.encode({'some': 'payload'}, 'secret', algorithm='HS256')
2323
'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzb21lIjoicGF5bG9hZCJ9.4twFt5NiznN84AWoo1d7KO1T_yoc0Z6XOpOVswacPZg'
2424

25-
>>> jwt.decode(encoded, 'secret'. algorithms=['HS256'])
25+
>>> jwt.decode(encoded, 'secret', algorithms=['HS256'])
2626
{'some': 'payload'}
2727
```
2828

0 commit comments

Comments
 (0)