Skip to content

Commit

Permalink
[pyright updated to 1.1.325] Update Version (#206)
Browse files Browse the repository at this point in the history
* Pyright NPM Package update to 1.1.325

* Fix lint

---------

Co-authored-by: RobertCraigie <[email protected]>
  • Loading branch information
RobertCraigie and RobertCraigie committed Aug 30, 2023
1 parent 40ea98f commit 273d353
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ You can also setup pyright to run automatically before each commit by setting up
```yaml
repos:
- repo: https://github.com/RobertCraigie/pyright-python
rev: v1.1.324
rev: v1.1.325
hooks:
- id: pyright
```
Expand Down
4 changes: 2 additions & 2 deletions pyright/_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
}


def install_pyright(args: tuple[object], *, quiet: bool | None) -> Path:
def install_pyright(args: tuple[object, ...], *, quiet: bool | None) -> Path:
"""Internal helper function to install the Pyright npm package to a cache.
This returns the path to the installed package.
Expand Down Expand Up @@ -74,7 +74,7 @@ def install_pyright(args: tuple[object], *, quiet: bool | None) -> Path:
def _should_warn_version(
version: str,
*,
args: tuple[object],
args: tuple[object, ...],
quiet: bool | None,
) -> bool:
if quiet:
Expand Down
4 changes: 2 additions & 2 deletions pyright/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = '1.1.324'
__pyright_version__ = '1.1.324'
__version__ = '1.1.325'
__pyright_version__ = '1.1.325'

0 comments on commit 273d353

Please sign in to comment.