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
When this package is used from a workspace that uses mypy it will show up with the error:
mypy
Skipping analyzing "redis_om": module is installed, but missing library stubs or py.typed marker
More on this from mypy in Missing library stubs or py typed marker
We would love to benefit from type-checking since HashModel is already based on pydantic! Any of the options mypy recommends is great:
HashModel
I have to put this in my pyproject.toml for the moment:
pyproject.toml
[[tool.mypy.overrides]] module = "redis_om" ignore_missing_imports = true
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When this package is used from a workspace that uses
mypy
it will show up with the error:More on this from mypy in Missing library stubs or py typed marker
We would love to benefit from type-checking since
HashModel
is already based on pydantic! Any of the options mypy recommends is great:I have to put this in my
pyproject.toml
for the moment:The text was updated successfully, but these errors were encountered: