mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-12 17:38:32 +02:00
fix typo
This commit is contained in:
parent
a4c97f36c2
commit
12bcc644d8
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ class EncryptionMethods(str, Enum):
|
||||||
JRNLV2 = "Jrnlv2Encryption"
|
JRNLV2 = "Jrnlv2Encryption"
|
||||||
|
|
||||||
|
|
||||||
def determine_encryption_method(config: str | bool) -> BaseEncryption:
|
def determine_encryption_method(config: str | bool) -> "BaseEncryption":
|
||||||
ENCRYPTION_METHODS = {
|
ENCRYPTION_METHODS = {
|
||||||
True: EncryptionMethods.JRNLV2, # the default
|
True: EncryptionMethods.JRNLV2, # the default
|
||||||
False: EncryptionMethods.NONE,
|
False: EncryptionMethods.NONE,
|
||||||
|
|
Loading…
Add table
Reference in a new issue