Returns the function's or modifier's signature.
Last updated 2 days ago
signature() β str
from glider import * def query(): functions = Functions().exec(3,3) for function in functions: # Aggregate the signature of each function along with their name print(f"function name {function.name} | signature {function.signature()}") return functions