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
You gonna love "async hell" so far than "callback hell", trust me :D
That's an isolated representative example, but you have multiple alternatives to avoid too nested statements, such as do not use async context managers (but that would make more boilerplate code), reuse the same sessions instead of create/destroying one.
A possible alternative passing the session instance and returning the response, but you should manually close things manually:
Might I be the first to call this "async hell" lol?
Is there really no other way to do this?
The text was updated successfully, but these errors were encountered: