diff --git a/stdlib/builtins.pyi b/stdlib/builtins.pyi index 2e268e637..bf01fd687 100644 --- a/stdlib/builtins.pyi +++ b/stdlib/builtins.pyi @@ -1664,7 +1664,7 @@ if sys.version_info >= (3, 10): class EncodingWarning(Warning): ... if sys.version_info >= (3, 11): - _SplitCondition = type[BaseException] | tuple[type[BaseException, ...]] | Callable[[BaseException], bool] + _SplitCondition = type[BaseException] | tuple[type[BaseException], ...] | Callable[[BaseException], bool] class BaseExceptionGroup(BaseException): def __new__(cls, __message: str, __exceptions: Sequence[BaseException]) -> BaseExceptionGroup | ExceptionGroup: ... @property