diff --git a/app/email_utils.py b/app/email_utils.py index eda31557..c284cae8 100644 --- a/app/email_utils.py +++ b/app/email_utils.py @@ -44,10 +44,8 @@ def render(template_name, **kwargs) -> str: template = env.get_template(template_name) return template.render( - MAX_NB_EMAIL_FREE_PLAN=MAX_NB_EMAIL_FREE_PLAN, - URL=URL, - **kwargs, - ) + MAX_NB_EMAIL_FREE_PLAN=MAX_NB_EMAIL_FREE_PLAN, URL=URL, **kwargs, + ) def send_welcome_email(user):