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

@@ -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):