From 5928a07ef03ad7ec0fa42f4d035c29011399e473 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Mon, 27 Nov 2023 20:53:26 +0100 Subject: [PATCH] Fix missing import --- vrobbler/apps/scrobbles/views.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vrobbler/apps/scrobbles/views.py b/vrobbler/apps/scrobbles/views.py index f8d77f7..c2a45fd 100644 --- a/vrobbler/apps/scrobbles/views.py +++ b/vrobbler/apps/scrobbles/views.py @@ -11,7 +11,7 @@ from django.contrib.auth.mixins import LoginRequiredMixin from django.db.models import Q from django.db.models.query import QuerySet from django.http import FileResponse, HttpResponseRedirect, JsonResponse -from django.urls import reverse, reverse_lazy +from django.urls import reverse_lazy from django.utils import timezone from django.views.decorators.csrf import csrf_exempt from django.views.generic import DetailView, FormView, TemplateView @@ -33,6 +33,7 @@ from scrobbles.constants import ( JELLYFIN_VIDEO_ITEM_TYPES, LONG_PLAY_MEDIA, MANUAL_SCROBBLE_FNS, + PLAY_AGAIN_MEDIA, ) from scrobbles.export import export_scrobbles from scrobbles.forms import ExportScrobbleForm, ScrobbleForm