Skip to content
This repository was archived by the owner on Mar 26, 2026. It is now read-only.

Commit 25fa431

Browse files
authored
fix: exclude 'input' from reserved names list
1 parent 6ccc06f commit 25fa431

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

gapic/utils/reserved_names.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@
2222
RESERVED_NAMES = frozenset(
2323
itertools.chain(
2424
keyword.kwlist,
25-
set(dir(builtins)) - {"filter", "map", "id", "property"},
25+
set(dir(builtins)) - {"filter", "map", "id", "input", "property"},
2626
)
2727
)

0 commit comments

Comments
 (0)