From 5455cf3f43b5848b188a0241b5dec91c982d128e Mon Sep 17 00:00:00 2001 From: Natasha Boyse Date: Mon, 27 Jan 2025 13:55:19 +0000 Subject: [PATCH] fix: missing import --- django_app/redbox_app/redbox_core/views/misc_views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django_app/redbox_app/redbox_core/views/misc_views.py b/django_app/redbox_app/redbox_core/views/misc_views.py index fd72ce93..55c3d2cf 100644 --- a/django_app/redbox_app/redbox_core/views/misc_views.py +++ b/django_app/redbox_app/redbox_core/views/misc_views.py @@ -3,7 +3,7 @@ from django.conf import settings from django.http import HttpRequest, HttpResponse -from django.shortcuts import render +from django.shortcuts import render, redirect from django.views.decorators.http import require_http_methods from django.views.generic.base import RedirectView