We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With code which references zeep.Settings or zeep.AsyncClient (for example), mypy produces this error:
zeep.Settings
zeep.AsyncClient
: error: Module has no attribute "Settings" [attr-defined]
It works fine if using the full name (e.g. zeep.settings.Settings).
zeep.settings.Settings
Not sure what is confusing it.
The text was updated successfully, but these errors were encountered:
Maybe using the explicit reexport approach would solve it (in __init__.py):
__init__.py
from zeep.client import AsyncClient as AsyncClient
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
With code which references
zeep.Settings
orzeep.AsyncClient
(for example), mypy produces this error:It works fine if using the full name (e.g.
zeep.settings.Settings
).Not sure what is confusing it.
The text was updated successfully, but these errors were encountered: