Skip to content

Commit

Permalink
fix README for python3 (#7947)
Browse files Browse the repository at this point in the history
lol
  • Loading branch information
alex committed Dec 30, 2022
1 parent 4de6304 commit 8867724
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.rst
Expand Up @@ -30,9 +30,9 @@ key derivation functions. For example, to encrypt something with
>>> f = Fernet(key)
>>> token = f.encrypt(b"A really secret message. Not for prying eyes.")
>>> token
'...'
b'...'
>>> f.decrypt(token)
'A really secret message. Not for prying eyes.'
b'A really secret message. Not for prying eyes.'
You can find more information in the `documentation`_.

Expand Down

0 comments on commit 8867724

Please sign in to comment.