From ecf271a86f7a98b203e10e44debced3f5b3b3811 Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Thu, 15 Jun 2023 15:28:55 -0400 Subject: [PATCH] fix: add `exec` as a reserved word `exec` was removed in #1575 --- gapic/utils/reserved_names.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gapic/utils/reserved_names.py b/gapic/utils/reserved_names.py index c17e5ea324..fe7b2218bb 100644 --- a/gapic/utils/reserved_names.py +++ b/gapic/utils/reserved_names.py @@ -86,6 +86,7 @@ "None", "try", "type", + "exec", # Comes from Protoplus "ignore_unknown_fields" ]