Closed TrangNguyenBC closed 5 years ago
Hi @ahal The extract_arguments(func, call, members=None) will read run function and extract run contexts from attributes of first arguments (in this case, it is args). Should we change the order of the arguments run_query instead?
extract_arguments(func, call, members=None)
run
args
run_query
Sure, the more important piece is that the order is consistent. Though couldn't extract_arguments just look at the second variable instead?
extract_arguments
Yes, I updated :-)
Thanks!
Hi @ahal The
extract_arguments(func, call, members=None)
will readrun
function and extract run contexts from attributes of first arguments (in this case, it isargs
). Should we change the order of the argumentsrun_query
instead?