From 12bcc644d84318598a87c1e08622f37b4d805ab5 Mon Sep 17 00:00:00 2001 From: Jonathan Wren Date: Sat, 5 Nov 2022 16:28:34 -0700 Subject: [PATCH] fix typo --- jrnl/encryption/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jrnl/encryption/__init__.py b/jrnl/encryption/__init__.py index f0cb30e4..56e36c2c 100644 --- a/jrnl/encryption/__init__.py +++ b/jrnl/encryption/__init__.py @@ -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,