File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ]
You can’t perform that action at this time.
0 commit comments