Created
July 5, 2024 22:48
-
-
Save elijahbenizzy/a816d49dd6fb9836839d8476130654f0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
async def dont_block_control_flow(): | |
result_1 = await complex_http_call() | |
result_2 = await complex_system_call(result_1) | |
return result_2 | |
data_loaded = await dont_block_control_flow() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment