I'm hitting a problem I don't seem to be able to solve in my algorith.
Let's say I have:
func1(x)
which returns a 2 element tuple, and I also have
func2(y,z)
which I want to use that tuple on. But everytime I try to call it on function2 as
func2(func1)
I get the error "missing 1 required positional argument:" because the function is receiving the tuple as:
func2((tuple1st_element, tuple2nd_element),)
and not
func2(tuple1st_element, tuple2nd_element)
How can I get it to do the latter?