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
src/app/data/unstructured/document/__init__.py:12:0: E0611: No name 'Language' in module 'lingua' (no-name-in-module)
src/app/data/unstructured/document/__init__.py:12:0: E0611: No name 'LanguageDetectorBuilder' in module 'lingua' (no-name-in-module)
lingua/__init__.py:
from .linguaimport*__doc__=lingua.__doc__ifhasattr(lingua, "__all__"):
__all__=lingua.__all__
Perhaps because this dynamic style of declaring exports is rather unusual or tricky for Pylint. Are you open to something to be done about this on Lingua's side?
The text was updated successfully, but these errors were encountered:
What version of Lingua are you using? 2.0? It turns out that one needs to specify the module name explicitly in the Python bindings which I just did to enable pickling. So even though I have no experience with Pylint I guess your error will be gone in the next release 2.1.0.
src/app/data/unstructured/document/__init__.py:12
:lingua/__init__.py
:Perhaps because this dynamic style of declaring exports is rather unusual or tricky for Pylint. Are you open to something to be done about this on Lingua's side?
The text was updated successfully, but these errors were encountered: