diff --git a/html_decorators.py b/html_decorators.py index 8d9c421..23f5835 100644 --- a/html_decorators.py +++ b/html_decorators.py @@ -1,16 +1,28 @@ def div(func): - # You have to code here! - pass + def new_func(*args, **kwargs): + content = '
' + content += func(args) + content += '
' + return content + return new_func # Here you must apply the decorators, uncomment this later