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
typing.Annotated
During reading the pip-run code, I raised an eyebrow upon seeing this: https://github.com/jaraco/pip-run/blob/f5c50a4c2a84bc43ed090820d44f2d4bac6cb0c6/pip_run/read-deps.py#L21
Thanks to typing.Annotated being present, there is a modern, type-safe way to do it, like here: https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#add-query-to-annotated-in-the-q-parameter
The text was updated successfully, but these errors were encountered:
I encountered this issue again today in jaraco/jaraco.home@33fb951.
Sorry, something went wrong.
I'll offer a $50 bounty for an accepted PR on this issue.
I'll take it along with #34. 🚀
py.typed
No branches or pull requests
During reading the pip-run code, I raised an eyebrow upon seeing this:
https://github.com/jaraco/pip-run/blob/f5c50a4c2a84bc43ed090820d44f2d4bac6cb0c6/pip_run/read-deps.py#L21
Thanks to
typing.Annotated
being present, there is a modern, type-safe way to do it, like here:https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#add-query-to-annotated-in-the-q-parameter
The text was updated successfully, but these errors were encountered: