From 8cbd7466814d654dcbdea9fe85f42c8b8bca7887 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Sun, 17 Nov 2024 21:00:27 -0500 Subject: [PATCH] [tasks] Fix import in utils --- vrobbler/apps/scrobbles/utils.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/vrobbler/apps/scrobbles/utils.py b/vrobbler/apps/scrobbles/utils.py index 8e61d9d..85d81b9 100644 --- a/vrobbler/apps/scrobbles/utils.py +++ b/vrobbler/apps/scrobbles/utils.py @@ -12,8 +12,11 @@ from django.utils import timezone from profiles.models import UserProfile from profiles.utils import now_user_timezone from scrobbles.constants import LONG_PLAY_MEDIA -from scrobbles.tasks import process_lastfm_import, process_retroarch_import -from vrobbler.apps.scrobbles.tasks import process_koreader_import +from scrobbles.tasks import ( + process_koreader_import, + process_lastfm_import, + process_retroarch_import, +) from webdav.client import get_webdav_client logger = logging.getLogger(__name__)