From 57cb510fd2e81a2a1749c792aacf78ebe4649d05 Mon Sep 17 00:00:00 2001 From: Jae-Won Chung Date: Sat, 24 May 2025 17:02:21 -0700 Subject: [PATCH] Update `grpcio` stub to import `grpc.aio` (#14132) --- stubs/grpcio/grpc/__init__.pyi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stubs/grpcio/grpc/__init__.pyi b/stubs/grpcio/grpc/__init__.pyi index 47de021b0..e03c9cf27 100644 --- a/stubs/grpcio/grpc/__init__.pyi +++ b/stubs/grpcio/grpc/__init__.pyi @@ -7,6 +7,8 @@ from types import ModuleType, TracebackType from typing import Any, Generic, NoReturn, Protocol, TypeVar, type_check_only from typing_extensions import Self, TypeAlias +from . import aio as aio + __version__: str # This class encodes an uninhabited type, requiring use of explicit casts or ignores