./deploy.sh validate isort fix - validate runs clean now

This commit is contained in:
greg 2023-12-04 05:17:43 -05:00
parent 98a7490fed
commit 9c22bfb7f8
4 changed files with 5 additions and 6 deletions

View File

@ -29,11 +29,11 @@ from home.tasks import (
check_reindex, check_reindex,
download_pending, download_pending,
extrac_dl, extrac_dl,
get_playlist_art,
run_restore_backup, run_restore_backup,
subscribe_to, subscribe_to,
get_playlist_art,
) )
from rest_framework import permissions from rest_framework import permissions, status
from rest_framework.authentication import ( from rest_framework.authentication import (
SessionAuthentication, SessionAuthentication,
TokenAuthentication, TokenAuthentication,
@ -42,7 +42,6 @@ from rest_framework.authtoken.models import Token
from rest_framework.authtoken.views import ObtainAuthToken from rest_framework.authtoken.views import ObtainAuthToken
from rest_framework.response import Response from rest_framework.response import Response
from rest_framework.views import APIView from rest_framework.views import APIView
from rest_framework import status
def check_admin(user): def check_admin(user):

View File

@ -8,8 +8,8 @@ import os
from time import sleep from time import sleep
from django.core.management.base import BaseCommand, CommandError from django.core.management.base import BaseCommand, CommandError
from home.src.es.index_setup import ElasitIndexWrap
from home.src.es.connect import ElasticWrap from home.src.es.connect import ElasticWrap
from home.src.es.index_setup import ElasitIndexWrap
from home.src.es.snapshot import ElasticSnapshot from home.src.es.snapshot import ElasticSnapshot
from home.src.ta.config import AppConfig, ReleaseVersion from home.src.ta.config import AppConfig, ReleaseVersion
from home.src.ta.helper import clear_dl_cache from home.src.ta.helper import clear_dl_cache

View File

@ -19,9 +19,9 @@ from home.src.download.yt_dlp_handler import VideoDownloader
from home.src.es.backup import ElasticBackup from home.src.es.backup import ElasticBackup
from home.src.es.index_setup import ElasitIndexWrap from home.src.es.index_setup import ElasitIndexWrap
from home.src.index.channel import YoutubeChannel from home.src.index.channel import YoutubeChannel
from home.src.index.playlist import YoutubePlaylist
from home.src.index.filesystem import Scanner from home.src.index.filesystem import Scanner
from home.src.index.manual import ImportFolderScanner from home.src.index.manual import ImportFolderScanner
from home.src.index.playlist import YoutubePlaylist
from home.src.index.reindex import Reindex, ReindexManual, ReindexPopulate from home.src.index.reindex import Reindex, ReindexManual, ReindexPopulate
from home.src.ta.config import AppConfig, ReleaseVersion, ScheduleBuilder from home.src.ta.config import AppConfig, ReleaseVersion, ScheduleBuilder
from home.src.ta.notify import Notifications from home.src.ta.notify import Notifications

View File

@ -26,12 +26,12 @@ from home.src.frontend.forms import (
AddToQueueForm, AddToQueueForm,
ApplicationSettingsForm, ApplicationSettingsForm,
ChannelOverwriteForm, ChannelOverwriteForm,
CreatePlaylistForm,
CustomAuthForm, CustomAuthForm,
MultiSearchForm, MultiSearchForm,
SchedulerSettingsForm, SchedulerSettingsForm,
SubscribeToChannelForm, SubscribeToChannelForm,
SubscribeToPlaylistForm, SubscribeToPlaylistForm,
CreatePlaylistForm,
UserSettingsForm, UserSettingsForm,
) )
from home.src.index.channel import channel_overwrites from home.src.index.channel import channel_overwrites