In a nutshell, I'm trying to implement the following:
def function_one(value):
...
return a, b
def function_two(a, b):
...
And when I try
function_two(function_one(value))
I get an error message: "function_two() missing 1 required positional argument: 'b'"
Is there a way to make this work as intended? Thanks!