from glider import*defquery(): functions =Functions().exec(30) called_functions = []for function in functions:for called in function.callee_functions().exec():# Return each called function from this specific one called_functions.append(called)return called_functions