jrnlv1 encryption doesn't support encryption anymore (it's deprecated)

This commit is contained in:
Jonathan Wren 2022-10-08 15:30:36 -07:00
parent 120ad59b8d
commit 196cb71beb

View file

@ -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: