From a3f89c9824baea3b3bf11f23969db632b910e6ee Mon Sep 17 00:00:00 2001 From: Dev Aggarwal Date: Thu, 27 Jun 2024 16:53:03 +0530 Subject: [PATCH] allow translation_target None --- recipes/Translation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/Translation.py b/recipes/Translation.py index 24fd61001..748d4a94c 100644 --- a/recipes/Translation.py +++ b/recipes/Translation.py @@ -23,7 +23,7 @@ class TranslationOptions(BaseModel): translation_source: str | None = Field( title="Source Translation Language", ) - translation_target: str = Field( + translation_target: str | None = Field( "en", title="Target Translation Language", )