From b0dc15a01850ab3b9f943c9adef4c25af2b678e8 Mon Sep 17 00:00:00 2001 From: Kharec Date: Tue, 16 Dec 2025 01:55:18 +0100 Subject: [PATCH] refactor: table_helpers to table_utils --- auditui/app.py | 2 +- auditui/{table_helpers.py => table_utils.py} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename auditui/{table_helpers.py => table_utils.py} (100%) diff --git a/auditui/app.py b/auditui/app.py index c14bd34..768f48e 100644 --- a/auditui/app.py +++ b/auditui/app.py @@ -14,7 +14,7 @@ from .constants import * from .downloads import DownloadManager from .library import LibraryClient from .playback import PlaybackController -from .table_helpers import create_progress_sort_key, create_title_sort_key +from .table_utils import create_progress_sort_key, create_title_sort_key if TYPE_CHECKING: from textual.widgets._data_table import ColumnKey diff --git a/auditui/table_helpers.py b/auditui/table_utils.py similarity index 100% rename from auditui/table_helpers.py rename to auditui/table_utils.py