From b5e981291f334911f8b907c1d3ff0d7d92ea8922 Mon Sep 17 00:00:00 2001 From: Benjamin Sigonneau Date: Tue, 16 Aug 2022 00:38:39 +0200 Subject: [PATCH] Fix quotes (black) --- webapp.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webapp.py b/webapp.py index 6633ed2..e548b9c 100644 --- a/webapp.py +++ b/webapp.py @@ -6,12 +6,12 @@ from bottle import hook, request, route, run, static_file, view import models from models import Price - # ---------------------------------------------------------------------- # Web application + @route("/") -@view("search_results", template_settings={'noescape':True}) +@view("search_results", template_settings={"noescape": True}) def results_page(): results = Price.select().order_by(Price.date.desc()) day_classes = {