keep
a = ["list", "items"]
keep(a=a)
keep(should_create_account = input.payload.create_account)
b, c = [], []
keep(test=b, c=c)
x = {"y": [], "z": []}
keep(**x)# Before hook
keep(foo = 123)
foo += 1
# Finaly hook
debug(foo) # This will print "123"Last updated
Was this helpful?