Hi,
I want to call a function and perform a action as shown here:
def happy_man():
notification = {
'effect': {
'fadeout': 'slow',
'message': 'Congratz!',
'type': 'rainbow_man',
}
}
return notification
action = happy_man() and records.action_quotation_sent()
But it looks the function does not work. What am I doing wrong?