From f0409dbc31703d52ad6245b1b8a6d5e7de60ef1a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 1 May 2024 19:43:25 +0200 Subject: [PATCH] Format Python code with Black (#2278) Co-authored-by: alexAubin <4533074+alexAubin@users.noreply.github.com> --- store/app.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/store/app.py b/store/app.py index f1b2a7c1..684d7717 100644 --- a/store/app.py +++ b/store/app.py @@ -83,6 +83,7 @@ def localize(d): else: return d["en"] + @app.context_processor def utils(): return { @@ -90,6 +91,7 @@ def utils(): "locale": get_locale(), } + ###############################################################################