-
Notifications
You must be signed in to change notification settings - Fork 769
New issue
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
Add support for Mypy type hinting #1438
Comments
seconded |
If the maintainers approve, then I can start adding types to graphene-django, and in general graphene |
seconded. It would seem this involve project-wide type hinting? @PureTryOut |
I'm not sure what you want me to answer? I don't know, I'm not involved in development of this project, just a user. |
Thank you for clarifying. I have just gone through the source code myself. Thanks for signifying :) |
I thin its a good idea. |
Is your feature request related to a problem? Please describe.
Our codebase is type checked using type hinting. There are stub packages for Django but
graphene-django
seems to be lacking it, thus importing anything from it causes Mypy to complain thaterror: Skipping analyzing "graphene_django": module is installed, but missing library stubs or py.typed marker [import]
. It does so for justgraphene
as well.Describe the solution you'd like
graphene-django
to export type hints.The text was updated successfully, but these errors were encountered: