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
uvicorn.run(app) need typing: 'ASGIApplication' (the asgiref package)
it's difference from typing of Starlette.__call__(self, scope: Scope, receive: Receive, send: Send) -> None
Starlette.__call__(self, scope: Scope, receive: Receive, send: Send) -> None
SO, IDE check and display a waring, about app uvicorn.run(app, host="127.0.0.1", port=8080)
uvicorn.run(app, host="127.0.0.1", port=8080)
The text was updated successfully, but these errors were encountered:
This issue is because we haven't solved #1217.
Sorry, something went wrong.
If someone is eager, feel free to take over my PR. I don't feel like working on it any time soon.
Even if the story is different, this is fundamentally the same as #1217.
For that reason, and housekeeping, I'm closing this issue.
Thanks for reporting it @Gascognya ! :)
No branches or pull requests
uvicorn.run(app) need typing: 'ASGIApplication'
(the asgiref package)
it's difference from typing of
Starlette.__call__(self, scope: Scope, receive: Receive, send: Send) -> None
SO, IDE check and display a waring, about app
uvicorn.run(app, host="127.0.0.1", port=8080)
The text was updated successfully, but these errors were encountered: