You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Codes in __init__.pyL147 and L169-L175 will cause these lang_result to be incorrectly fallback to the lang_en:
...
self.lang_result=lang_result.lower()
...
# Argument checks.ifself.lang_resultnotinresult_languages_list:
ROOT_LOGGER.error(
f"{self.lang_result} is not a valid language result. See {result_languages_file} for the list of valid "'languages. Setting lang_result to "lang_en".'
)
self.lang_result="lang_en"
...