Adjust the seconds_to_timestr import in sync/tasks.py

This commit is contained in:
tcely 2025-06-02 14:59:08 -04:00 committed by GitHub
parent 7b23d3b0f0
commit 2c67b2f31c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -31,11 +31,11 @@ from common.errors import ( NoFormatException, NoMediaException,
NoThumbnailException,
DownloadFailedException, )
from common.utils import ( django_queryset_generator as qs_gen,
remove_enclosed, )
remove_enclosed, seconds_to_timestr, )
from .choices import Val, TaskQueue
from .models import Source, Media, MediaServer
from .utils import ( get_remote_image, resize_image_to_height,
write_text_file, filter_response, seconds_to_timestr, )
write_text_file, filter_response, )
from .youtube import YouTubeError
db_vendor = db.connection.vendor