From 503c8854bc4ca4cb885cf9d0d259b7b62c005983 Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Sun, 12 Jul 2026 12:16:11 -0400 Subject: [PATCH] style(importer): sort wip_title import into the local-import block MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Ruff I001 fixup for 5719387 — the new .wip_title import belongs after .thumbnailer (alphabetical), not after .archive_extractor. Co-Authored-By: Claude Opus 4.8 (1M context) --- backend/app/services/importer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/app/services/importer.py b/backend/app/services/importer.py index 82f28d1..b773d89 100644 --- a/backend/app/services/importer.py +++ b/backend/app/services/importer.py @@ -43,11 +43,11 @@ from ..utils.phash import compute_phash, find_similar from ..utils.sidecar import find_sidecar, parse_sidecar from ..utils.slug import slugify from .archive_extractor import extract_archive, is_archive -from .wip_title import apply_wip_image_tags, matches_wip_title, resolve_wip_tag_id from .attachment_store import AttachmentStore from .audits import single_color from .link_extract import extract_external_links from .thumbnailer import Thumbnailer +from .wip_title import apply_wip_image_tags, matches_wip_title, resolve_wip_tag_id log = logging.getLogger(__name__)