chore: remove unused jinja export option (#5631)

This commit is contained in:
Hayden
2025-07-04 19:45:56 -05:00
committed by GitHub
parent 50a986f331
commit da3271f33f
10 changed files with 8 additions and 137 deletions

View File

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