I have created a project using azure-python serverless framework template. When I try to run locally: serverless offline, I get following error:
cannot load the goodbye function: the following parameters are declared in function.json but not in Python: {'res'}
If I modify manually function.json and replace name value "res" of parameter with $return, everything works. However, this file is regenerated by framework. How to define this parameter as $return in function.json?

