Python Decorators
@make_bold
@make_italic
def hello():
return "hello world"
# equivalent to
def hello():
return "hello world"
hello = make_bold(make_italic(hello))
# seems like order is wrong -> from working on get.fiit white label views..
# why is it like that.. should conduct my own experiment