You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An async function with no return type declaration, like: async def foo():
This is inferred as returning Any, but should be inferred as returning Awaitable[Any]. The result of this has caused us to miss a bunch of unused awaitable warnings via incomplete stubs.