From bf03391b6d6182d30f3114370f70e489b20a83b6 Mon Sep 17 00:00:00 2001 From: Jonathan Bobel Date: Mon, 28 Apr 2025 12:17:28 -0400 Subject: [PATCH] Update tour.py --- app/main/views/tour.py | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/app/main/views/tour.py b/app/main/views/tour.py index 57ab12125..31bb16803 100644 --- a/app/main/views/tour.py +++ b/app/main/views/tour.py @@ -151,17 +151,17 @@ def _get_tour_step_back_link(service_id, template_id, step_index): } else: return { - "href": { - "url": url_for( - "main.tour_step", - service_id=service_id, - template_id=template_id, - step_index=step_index - 1, - ), - "text": "Back to previous step", - }, - "html": "Back to previous step", - } + "href": { + "url": url_for( + "main.tour_step", + service_id=service_id, + template_id=template_id, + step_index=step_index - 1, + ), + "text": "Back to previous step", + }, + "html": "Back to previous step", + } @main.route(