def my_decorator(func):
    def wrapper():
        func()
		func()

    return wrapper