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
As https://github.com/tmux-python/libtmux/blob/master/src/libtmux/__init__.py we can see some imports that are not mentioned inside an __all__ line.
__all__
This is is causing type check failures when running mypy in strict mode as it means that these module do not have an explicit exports. Example:
error: Module "libtmux" does not explicitly export attribute "Server" [attr-defined]
The text was updated successfully, but these errors were encountered:
Add implicit exports into __init__.py
765d700
Fixes: tmux-python#530
packaging: Add implicit exports into __init__.py (#531)
5a46a9a
Fixes: #530
@ssbarnea #531 is live in v0.32.0 (PyPI, release notes, changes)
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
As https://github.com/tmux-python/libtmux/blob/master/src/libtmux/__init__.py we can see some imports that are not mentioned inside an
__all__
line.This is is causing type check failures when running mypy in strict mode as it means that these module do not have an explicit exports. Example:
The text was updated successfully, but these errors were encountered: