From 96e3468a9b3999f097dccebf2d326f41d9a0f8fb 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 f1b2a7c..684d771 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(), } + ###############################################################################