diff --git a/html_decorators.py b/html_decorators.py index 8d9c421..f45424b 100644 --- a/html_decorators.py +++ b/html_decorators.py @@ -1,16 +1,25 @@ def div(func): - # You have to code here! - pass + + def wrapper(*args): + return f'
{func(*args)}
' + + return wrapper # Here you must apply the decorators, uncomment this later