style: 格式化代码

This commit is contained in:
2026-05-07 19:48:07 +08:00
parent fcda88488b
commit 048e74ad7f
19 changed files with 164 additions and 132 deletions

View File

@@ -65,8 +65,6 @@ class TestEpathModify:
def test_modify_list_index_with_parents(self):
d = {"items": []}
result = epath(
d, "items.[3]", enable_modify=True, new_value=42, parents=True
)
result = epath(d, "items.[3]", enable_modify=True, new_value=42, parents=True)
assert result == 42
assert d["items"] == [None, None, None, 42]