diff --git a/README.md b/README.md index bc84337..9ec4b00 100644 --- a/README.md +++ b/README.md @@ -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 ``` diff --git a/pyright/_utils.py b/pyright/_utils.py index 83677af..df7a902 100644 --- a/pyright/_utils.py +++ b/pyright/_utils.py @@ -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. @@ -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: diff --git a/pyright/_version.py b/pyright/_version.py index fe21d3d..08bcb2f 100644 --- a/pyright/_version.py +++ b/pyright/_version.py @@ -1,2 +1,2 @@ -__version__ = '1.1.324' -__pyright_version__ = '1.1.324' +__version__ = '1.1.325' +__pyright_version__ = '1.1.325'