浏览代码

[tasks] Fix import in utils

Colin Powell 5 月之前
父节点
当前提交
8cbd746681
共有 1 个文件被更改,包括 5 次插入2 次删除
  1. 5 2
      vrobbler/apps/scrobbles/utils.py

+ 5 - 2
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__)