From 25fa431b654656605c5d6913ad9c3cc6d353040a Mon Sep 17 00:00:00 2001 From: Bu Sun Kim <8822365+busunkim96@users.noreply.github.com> Date: Thu, 25 Feb 2021 10:49:00 -0700 Subject: [PATCH] fix: exclude 'input' from reserved names list --- gapic/utils/reserved_names.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gapic/utils/reserved_names.py b/gapic/utils/reserved_names.py index 3d1e9b4459..9bf1c9a914 100644 --- a/gapic/utils/reserved_names.py +++ b/gapic/utils/reserved_names.py @@ -22,6 +22,6 @@ RESERVED_NAMES = frozenset( itertools.chain( keyword.kwlist, - set(dir(builtins)) - {"filter", "map", "id", "property"}, + set(dir(builtins)) - {"filter", "map", "id", "input", "property"}, ) )