From 9d0a0990e6c08a0fc1d01d29d7520f12baf3a347 Mon Sep 17 00:00:00 2001 From: Litchi Pi Date: Thu, 24 Jul 2025 11:16:51 +0200 Subject: [PATCH] lint Signed-off-by: Litchi Pi --- mealie/core/exceptions.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mealie/core/exceptions.py b/mealie/core/exceptions.py index f1ad27144..6135ca407 100644 --- a/mealie/core/exceptions.py +++ b/mealie/core/exceptions.py @@ -52,6 +52,7 @@ class IncompleteData(Exception): """ This exception is raised when a user sends incomplete data to the API """ + def __init__(self, missing, *args, **kwargs): - Exception.__init__(*args, **kwargs): + Exception.__init__(*args, **kwargs) self.missing = missing