Update mypy to 1.18.1 (#14699)

This commit is contained in:
sobolevn
2025-09-14 03:33:27 +02:00
committed by GitHub
parent 59c36c8bf9
commit 4b0623f4fb
31 changed files with 70 additions and 108 deletions
+3 -3
View File
@@ -248,14 +248,14 @@ class ServicerContext(Generic[_TRequest, _TResponse], metaclass=abc.ABCMeta):
# Client-Side Interceptor:
class ClientCallDetails(abc.ABC):
def __init__(
self,
def __new__(
_cls,
method: str,
timeout: float | None,
metadata: Metadata | None,
credentials: CallCredentials | None,
wait_for_ready: bool | None,
) -> None: ...
) -> Self: ...
method: str
timeout: float | None