Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/test_shaker.py
Original file line number Diff line number Diff line change
Expand Up @@ -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] = {}
Expand Down
Loading