From 868d9507863560c8b8e15e50be9a4da0cbc6359d Mon Sep 17 00:00:00 2001 From: Torgny Bjers Date: Sat, 6 Jun 2026 20:45:18 -0400 Subject: [PATCH] Apply suggested fix to tests/test_shaker.py from Copilot Autofix Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com> --- tests/test_shaker.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/test_shaker.py b/tests/test_shaker.py index fd3bd9e..c867809 100644 --- a/tests/test_shaker.py +++ b/tests/test_shaker.py @@ -15,7 +15,10 @@ def parse(tmp_path: Path, content: str) -> list[Any]: def make_pool(tmp_path: Path, content: str) -> dict[str, list]: - """Parse content and return a list-valued pool dict (mirrors _add_to_pool logic).""" + """Parse content and return a list-valued pool dict. + + This mirrors the private ``_add_to_pool`` behavior in ``openscad_packer.shaker``. + """ nodes = parse(tmp_path, content) pool: dict[str, list] = {} for node in nodes: