From a413c0523e0bf1700aa3e9a9525b657fd1d46e8d Mon Sep 17 00:00:00 2001 From: Lucas Abel <22837557+uael@users.noreply.github.com> Date: Sun, 19 Nov 2023 23:31:37 -0800 Subject: [PATCH] pytype: disable covariant `TypeVar` not supported yet --- python/_build/protoc-gen-custom_grpc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/_build/protoc-gen-custom_grpc b/python/_build/protoc-gen-custom_grpc index 1c620c5..f03a0c8 100755 --- a/python/_build/protoc-gen-custom_grpc +++ b/python/_build/protoc-gen-custom_grpc @@ -467,7 +467,7 @@ import sys from typing import Any, AsyncIterable, AsyncIterator, Generic, Iterator, TypeVar -_T_co = TypeVar('_T_co', covariant=True) +_T_co = TypeVar('_T_co', covariant=True) # pytype: disable=not-supported-yet _T = TypeVar('_T')