Island: Remove unnecessary type from docstring in KeyBasedEncryptor

This commit is contained in:
Mike Salvatore 2022-07-19 09:50:34 -04:00
parent 061c002c94
commit 3794f735af
1 changed files with 1 additions and 2 deletions

View File

@ -21,8 +21,7 @@ class KeyBasedEncryptor(IEncryptor):
def __init__(self, key: EncryptionKey32Bytes):
"""
Initializes a KeyBasedEncryptor object
:param EncryptionKey32Bytes key: The encryption key with which the object should be
initialized.
:param key: The encryption key with which the object should be initialized.
"""
formatted_key = base64.urlsafe_b64encode(key)
self._fernet = Fernet(formatted_key)