diff --git a/jrnl/encryption/Jrnlv1Encryption.py b/jrnl/encryption/Jrnlv1Encryption.py index 14190230..1372c0f2 100644 --- a/jrnl/encryption/Jrnlv1Encryption.py +++ b/jrnl/encryption/Jrnlv1Encryption.py @@ -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: