Intro-to-Jinja-tpl-v2/decorators.py

6 lines
106 B
Python
Raw Normal View History

def do_twice(func):
def wrapper_do_twice():
func()
func()
return wrapper_do_twice