Skip to content

Commit

Permalink
fix: update pyright
Browse files Browse the repository at this point in the history
  • Loading branch information
vberlier committed Feb 1, 2023
1 parent 1ee0914 commit 24120a9
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion bolt/parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -2218,7 +2218,7 @@ def __call__(self, stream: TokenStream) -> Any:
if (
isinstance(node, AstIdentifier)
and not isinstance(parent, AstCall)
and node.value in self.builtins
and node.value in self.builtins # type: ignore
and not lexical_scope.has_binding(node.value, search_parents=True)
):
# Reset the underlying token generator so that the identifier can
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.281"
"pyright": "^1.1.292"
}
}
16 changes: 8 additions & 8 deletions poetry.lock

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

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ include = ["bolt/py.typed"]

[tool.poetry.dependencies]
python = "^3.10"
beet = ">=0.83.0"
mecha = ">=0.65.0"
beet = ">=0.83.1"
mecha = ">=0.65.1"

[tool.poetry.group.dev.dependencies]
pytest = "^7.2.1"
Expand Down

0 comments on commit 24120a9

Please sign in to comment.