datatrove
datatrove copied to clipboard
Fix languages listify bug
If the passed language is a string, it should be turned into a list like this [languages]
rather than list(languages)
. The latter will turn a string into a list of its individual characters.
>>> list("en")
['e', 'n']
>>> ["en"]
['en']