Island: Fix imports in encryption_key_types.py and key_based_encryptor.py

This commit is contained in:
Shreya Malviya 2022-07-19 18:19:41 +05:30
parent 80104381d7
commit d022c65439
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
from . import SizeError
from .errors import SizeError
class EncryptionKey32Bytes(bytes):

View File

@ -3,7 +3,7 @@ import logging
from cryptography.fernet import Fernet
from . import EncryptionKey32Bytes
from .encryption_key_types import EncryptionKey32Bytes
from .i_encryptor import IEncryptor
logger = logging.getLogger(__name__)