From ee624af9738d5e96ed0819372c36b2c0df3f94d7 Mon Sep 17 00:00:00 2001 From: Kevin Zheng <147537668+gkevinzheng@users.noreply.github.com> Date: Fri, 20 Dec 2024 10:01:01 -0500 Subject: [PATCH] Update gapic/schema/wrappers.py Co-authored-by: Victor Chudnovsky --- gapic/schema/wrappers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gapic/schema/wrappers.py b/gapic/schema/wrappers.py index 658d46b2e..d65e425f3 100644 --- a/gapic/schema/wrappers.py +++ b/gapic/schema/wrappers.py @@ -1799,7 +1799,7 @@ def build_address_allowlist_for_selective_gapic(self, *, if self.extended_lro: # We need to add the service/method pointed to by self.operation_service to # the allowlist, as it might not have been specified by selective_gapic_generation. - # We assume that the operation service lives in the same proto as this one. + # We assume that the operation service lives in the same proto file as this one. operation_service = services_in_proto[ self.operation_service] # type: ignore address_allowlist.add(operation_service.meta.address)