From a01b5c423bafb50ee2c097fcbc54a6f7d2f3fa58 Mon Sep 17 00:00:00 2001 From: Travis Abendshien <46939827+CyanVoxel@users.noreply.github.com> Date: Mon, 29 Jun 2026 11:55:01 -0700 Subject: [PATCH] chore: format with ruff --- src/tagstudio/qt/mixed/progress_bar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tagstudio/qt/mixed/progress_bar.py b/src/tagstudio/qt/mixed/progress_bar.py index cc413c5d..c7bd1fe9 100644 --- a/src/tagstudio/qt/mixed/progress_bar.py +++ b/src/tagstudio/qt/mixed/progress_bar.py @@ -53,7 +53,7 @@ class ProgressWidget(QWidget): self, function: Callable, update_label_callback: Callable | None, *done_callbacks ): """Display the progress widget from a threaded iterable function. - + Method expects the iterable to yield the number of completed objects. """ iterator = FunctionIterator(function)