Argument.type
Returns the type of the argument.
property
type
: Type
Query Example
from glider import *
def query():
functions = Functions().with_arg_count(2).exec(100)
for f in functions:
for arg in f.arguments().list():
print(f"Argument type: {arg.get_variable().type}")
return []
Output Example

Last updated