Skip to content

Commit ee4c7f1

Browse files
fix codespell
1 parent a94c98b commit ee4c7f1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/units/test_minification.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -288,14 +288,14 @@ def handler_b(self):
288288
# Start with partial config (using string IDs in v2 format)
289289
existing_config: MinifyConfig = {
290290
"version": SCHEMA_VERSION,
291-
"states": {state_path: "bU"}, # Some arbitrary minified name
291+
"states": {state_path: "bU"}, # codespell:ignore
292292
"events": {state_path: {"handler_a": "k"}}, # Another arbitrary name
293293
}
294294

295295
new_config = sync_minify_config(existing_config, TestState)
296296

297297
# Existing IDs should be preserved
298-
assert new_config["states"][state_path] == "bU"
298+
assert new_config["states"][state_path] == "bU" # codespell:ignore
299299
assert new_config["events"][state_path]["handler_a"] == "k"
300300
# New handler should be added with next ID (k=10, so next is l=11)
301301
assert "handler_b" in new_config["events"][state_path]

0 commit comments

Comments
 (0)