From a5d72ce4c3b641d7a46c6aca3c26458e8d510b51 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Tue, 2 Dec 2025 17:47:23 -0500 Subject: [PATCH] [videos] Linting the imports --- vrobbler/apps/videos/models.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/vrobbler/apps/videos/models.py b/vrobbler/apps/videos/models.py index 04834c6..798a6bf 100644 --- a/vrobbler/apps/videos/models.py +++ b/vrobbler/apps/videos/models.py @@ -13,7 +13,6 @@ from django.utils.translation import gettext_lazy as _ from django_extensions.db.models import TimeStampedModel from imagekit.models import ImageSpecField from imagekit.processors import ResizeToFit -from music.constants import JELLYFIN_POST_KEYS from scrobbles.mixins import ( ObjectWithGenres, ScrobblableConstants, @@ -29,7 +28,6 @@ from vrobbler.apps.scrobbles.dataclasses import BaseLogData, WithPeopleLogData YOUTUBE_VIDEO_URL = "https://www.youtube.com/watch?v=" YOUTUBE_CHANNEL_URL = "https://www.youtube.com/channel/" YOUTUBE_ID_PATTERN = re.compile(r'^[A-Za-z0-9_-]{11}$') - IMDB_VIDEO_URL = "https://www.imdb.com/title/" logger = logging.getLogger(__name__)