def A(event):
B(event)
return "something"
def B(event)
return event
Let's say I have a function like the one above, how do make function A return its output and not wait for function B. The output of A does not depend on function B but function B depends on the input of function A.