From a03b1c79ece510510050e1aa8cc5fbde3708b22e Mon Sep 17 00:00:00 2001 From: Torgny Bjers Date: Sat, 6 Jun 2026 16:36:46 -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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_shaker.py b/tests/test_shaker.py index 9a5e5a9..387abe0 100644 --- a/tests/test_shaker.py +++ b/tests/test_shaker.py @@ -13,7 +13,7 @@ def parse(tmp_path: Path, content: str) -> list: return getASTfromFile(str(f), process_includes=False) or [] -def make_pool(tmp_path: Path, content: str) -> dict: +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).""" nodes = parse(tmp_path, content) pool: dict[str, list] = {}