Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion deep_translator/google.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,4 +119,9 @@ def translate_batch(self, batch: List[str], **kwargs) -> List[str]:
@param batch: list of texts you want to translate
@return: list of translations
"""
return self._translate_batch(batch, **kwargs)
if not batch:
raise Exception("Enter your text list that you want to translate")
text = '\n'.join(batch)
translated = self.translate(text, **kwargs)
arr = translated.split('\n')
return arr