This commit is contained in:
Jonathan Wren 2022-11-05 16:28:34 -07:00
parent a4c97f36c2
commit 12bcc644d8
No known key found for this signature in database

View file

@ -17,7 +17,7 @@ class EncryptionMethods(str, Enum):
JRNLV2 = "Jrnlv2Encryption"
def determine_encryption_method(config: str | bool) -> BaseEncryption:
def determine_encryption_method(config: str | bool) -> "BaseEncryption":
ENCRYPTION_METHODS = {
True: EncryptionMethods.JRNLV2, # the default
False: EncryptionMethods.NONE,