Async
Syntax
You cannot call await
on non-async function:
# def do_something(): print("Do Something") async erroneous_function(): await do_something()
You cannot call await
on non-async function:
# def do_something(): print("Do Something") async erroneous_function(): await do_something()