An example function:
import json
def my_function(params: dict) -> bool:
"""Returns the output of my function"""
print(json.dumps(params, indent=2)
var1 = params.get('key1')
print(f"Value of my first key is {var1}")
return None
Comments
0 comments
Please sign in to leave a comment.