From 3c22c4ea872f216aa7151aac76d4d6a27133e0f1 Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Thu, 6 Jun 2024 08:48:55 -0700 Subject: [PATCH] No need to cover this, it's future growth --- src/documents/management/commands/mixins.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/documents/management/commands/mixins.py b/src/documents/management/commands/mixins.py index 847f027e1..1347957be 100644 --- a/src/documents/management/commands/mixins.py +++ b/src/documents/management/commands/mixins.py @@ -128,7 +128,7 @@ class CryptMixin: salt=bytes.fromhex(self.salt), iterations=self.key_iterations, ) - else: + else: # pragma: no cover raise CommandError( f"{self.kdf_algorithm} is an unknown key derivation function", )