From 2c67b2f31c4b1f0dd118c47b1e99c914a39a77e2 Mon Sep 17 00:00:00 2001 From: tcely Date: Mon, 2 Jun 2025 14:59:08 -0400 Subject: [PATCH] Adjust the `seconds_to_timestr` import in sync/tasks.py --- tubesync/sync/tasks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tubesync/sync/tasks.py b/tubesync/sync/tasks.py index c5903bb0..f01f769e 100644 --- a/tubesync/sync/tasks.py +++ b/tubesync/sync/tasks.py @@ -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