Clean up imports

This commit is contained in:
2023-03-04 17:28:42 -05:00
parent 9c881d3bd9
commit 3d7528030a
8 changed files with 17 additions and 22 deletions

View File

@ -1,11 +1,10 @@
import json
import pytest
from django.urls import reverse
from vrobbler.apps.scrobbles.models import Scrobble
from vrobbler.apps.music.models import Track
from vrobbler.apps.podcasts.models import Episode
from music.models import Track
from podcasts.models import Episode
from scrobbles.models import Scrobble
@pytest.mark.django_db

View File

@ -1,6 +1,6 @@
import pytest
from vrobbler.apps.videos.imdb import lookup_video_from_imdb
from videos.imdb import lookup_video_from_imdb
@pytest.mark.skip(reason="Need to sort out third party API testing")