Skip to content

Commit

Permalink
nacl.secret.Aead: Remove Py2 cruft (inheritence from object) (#682)
Browse files Browse the repository at this point in the history
  • Loading branch information
nbraud committed Aug 9, 2021
1 parent 2f2f25d commit 180e401
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nacl/secret.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def decrypt(self, ciphertext, nonce=None, encoder=encoding.RawEncoder):
return plaintext


class Aead(encoding.Encodable, StringFixer, object):
class Aead(encoding.Encodable, StringFixer):
"""
The AEAD class encrypts and decrypts messages using the given secret key.
Expand Down

0 comments on commit 180e401

Please sign in to comment.