From 7ab346fc7b1ac02c295d08fb6523a0dd178e8e32 Mon Sep 17 00:00:00 2001 From: Matt Miller Date: Tue, 19 May 2026 14:51:00 -0700 Subject: [PATCH] chore(assets): drop unused normalize_tags import after subpath-collapse refactor normalize_tags lowercased every tag, which would have stripped case from the slash-joined subpath (e.g. "diffusers/Kolors/text_encoder" -> "diffusers/kolors/text_encoder") and broken consumer lookups keyed on the original-case path. The refactored implementation inlines a strip + dedup so the import is no longer needed. --- app/assets/services/path_utils.py | 1 - 1 file changed, 1 deletion(-) diff --git a/app/assets/services/path_utils.py b/app/assets/services/path_utils.py index 2363d01f3..b3ded8b47 100644 --- a/app/assets/services/path_utils.py +++ b/app/assets/services/path_utils.py @@ -3,7 +3,6 @@ from pathlib import Path from typing import Literal import folder_paths -from app.assets.helpers import normalize_tags _NON_MODEL_FOLDER_NAMES = frozenset({"custom_nodes"})