mirror of https://github.com/CIRCL/AIL-framework
fix: [Language] Updated the language detector to return a empty list when no language is detected
parent
35502d955f
commit
1d1671c00f
|
@ -493,10 +493,10 @@ class LanguagesDetector:
|
||||||
|
|
||||||
def detect(self, content, force_gcld3=False): # TODO detect length between 20-200 ????
|
def detect(self, content, force_gcld3=False): # TODO detect length between 20-200 ????
|
||||||
if not content:
|
if not content:
|
||||||
return None
|
return []
|
||||||
content = _clean_text_to_translate(content, html=True)
|
content = _clean_text_to_translate(content, html=True)
|
||||||
if not content:
|
if not content:
|
||||||
return None
|
return []
|
||||||
# DEBUG
|
# DEBUG
|
||||||
# print('-------------------------------------------------------')
|
# print('-------------------------------------------------------')
|
||||||
# print(content)
|
# print(content)
|
||||||
|
|
Loading…
Reference in New Issue