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
Today this minimal code:
$ cat /tmp/test.py from addict import Dict a = Dict()
can not be included in a fully typed project:
$ mypy /tmp/test.py /tmp/test.py:1: error: Skipping analyzing "addict": module is installed, but missing library stubs or py.typed marker /tmp/test.py:1: note: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports Found 1 error in 1 file (checked 1 source file) $
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Today this minimal code:
can not be included in a fully typed project:
The text was updated successfully, but these errors were encountered: