mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-12 17:38:32 +02:00
jrnlv1 encryption doesn't support encryption anymore (it's deprecated)
This commit is contained in:
parent
120ad59b8d
commit
196cb71beb
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ class Jrnlv1Encryption(BasePasswordEncryption):
|
|||
def __init__(self, *args, **kwargs) -> None:
|
||||
super().__init__(*args, **kwargs)
|
||||
|
||||
def _encrypt(self, text: str) -> bytes:
|
||||
def _encrypt(self, _: str) -> bytes:
|
||||
raise NotImplementedError
|
||||
|
||||
def _decrypt(self, text: bytes) -> str | None:
|
||||
|
|
Loading…
Add table
Reference in a new issue