Minor refactor

This commit is contained in:
Piero Toffanin 2023-11-08 21:58:59 -05:00
parent 37bd2365b9
commit 8427f86275

View file

@ -578,7 +578,7 @@ def create_app(args):
try:
if batch:
results = []
for _idx, text in enumerate(q):
for text in q:
translator = src_lang.get_translation(tgt_lang)
if translator is None:
abort(400, description=_("%(tname)s (%(tcode)s) is not available as a target language from %(sname)s (%(scode)s)", tname=_lazy(tgt_lang.name), tcode=tgt_lang.code, sname=_lazy(src_lang.name), scode=src_lang.code))