Skip to content

Commit

Permalink
fix: bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
vberlier committed Sep 11, 2022
1 parent 70e939c commit 1b40954
Show file tree
Hide file tree
Showing 5 changed files with 279 additions and 1,283 deletions.
2 changes: 1 addition & 1 deletion beet/toolchain/tree.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def generate_tree(
name: Optional[str] = None,
) -> Iterator[TreeNode[T]]:
"""Generate a search tree and yield nodes in a depth-first traversal."""
data = TreeData(root, [], list(items), key, name)
data = TreeData[T](root, [], list(items), key, name)

data.stack.append(
TreeNode(
Expand Down
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
"check": "poetry run pyright"
},
"devDependencies": {
"pyright": "^1.1.261"
"pyright": "^1.1.270"
}
}

0 comments on commit 1b40954

Please sign in to comment.