diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-11-22 10:32:56 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-11-22 10:32:56 -0800 |
commit | 033af15d5f8d98007834be4aac4f260327e3c0c1 (patch) | |
tree | 3e4ad639810857db00daacac9cb5877f2254c4ee | |
parent | 36597b4379bd62e520b9076072a030c73b85f471 (diff) | |
download | cryptography-033af15d5f8d98007834be4aac4f260327e3c0c1.tar.gz cryptography-033af15d5f8d98007834be4aac4f260327e3c0c1.tar.bz2 cryptography-033af15d5f8d98007834be4aac4f260327e3c0c1.zip |
removed silly line
-rw-r--r-- | cryptography/fernet.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cryptography/fernet.py b/cryptography/fernet.py index ba2ff4e3..efa13b8f 100644 --- a/cryptography/fernet.py +++ b/cryptography/fernet.py @@ -60,7 +60,6 @@ bool Cryptography_constant_time_compare(uint8_t *a, size_t len_a, uint8_t *b, class Fernet(object): def __init__(self, key, backend=None): - super(Fernet, self).__init__() key = base64.urlsafe_b64decode(key) assert len(key) == 32 self.signing_key = key[:16] |