Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
wren committed Nov 5, 2022
1 parent a4c97f3 commit 493cfe9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jrnl/encryption/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def __str__(self) -> str:
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,
Expand Down

0 comments on commit 493cfe9

Please sign in to comment.