From 2f867c0c2a48a4535c84a4fa9c38edeb83561cc4 Mon Sep 17 00:00:00 2001 From: warriorstar-orion Date: Fri, 28 Aug 2026 23:53:45 +0000 Subject: [PATCH] fix CI dupe icon check (#32490) --- tools/ci/check_icons.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ci/check_icons.py b/tools/ci/check_icons.py index e55dc0fdf86..877ad58eae3 100644 --- a/tools/ci/check_icons.py +++ b/tools/ci/check_icons.py @@ -10,7 +10,7 @@ def check_duplicate_names(dmi: DMI) -> list[str]: for state in dmi.states(): # Movement states have the same name as their non-movement counterparts if (state.name, state.movement) in states: - duplicates.append(f"duplicate state name `{state.name}`") + failures.append(f"duplicate state name `{state.name}`") states.add((state.name, state.movement)) return failures