Bump pyright to 1.1.332 (#10904)

Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
This commit is contained in:
Nikita Sobolev
2023-10-18 12:09:50 +03:00
committed by GitHub
parent 2f8d01e9ec
commit d14c5f82c8
2 changed files with 2 additions and 2 deletions

View File

@@ -98,5 +98,5 @@ select = [
]
[tool.typeshed]
pyright_version = "1.1.330"
pyright_version = "1.1.332"
oldest_supported_python = "3.7"

View File

@@ -47,7 +47,7 @@ Unused: TypeAlias = object
# _SentinelType = NewType("_SentinelType", object)
# sentinel: _SentinelType
# def foo(x: int | None | _SentinelType = ...) -> None: ...
sentinel = Any # noqa: Y026
sentinel: Any
# stable
class IdentityFunction(Protocol):