From 4b5ded9f5c6236515671bfe670bee29267d04638 Mon Sep 17 00:00:00 2001 From: Hayden <64056131+hay-kot@users.noreply.github.com> Date: Fri, 4 Jul 2025 12:25:39 -0500 Subject: [PATCH] fix typing for protocol --- mealie/lang/providers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mealie/lang/providers.py b/mealie/lang/providers.py index 106a89403..67d1471f7 100644 --- a/mealie/lang/providers.py +++ b/mealie/lang/providers.py @@ -13,7 +13,7 @@ TRANSLATIONS = CWD / "messages" class Translator(Protocol): @abstractmethod - def t(self, key, default=None, **kwargs): + def t(self, key, default=None, **kwargs) -> str: pass