We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf0f276 commit bc33595Copy full SHA for bc33595
googleapiclient/discovery.py
@@ -138,7 +138,7 @@ def fix_method_name(name):
138
name: string, method name.
139
140
Returns:
141
- The name with a '_' prefixed if the name is a reserved word.
+ The name with an '_' appended if the name is a reserved word.
142
"""
143
if keyword.iskeyword(name) or name in RESERVED_WORDS:
144
return name + '_'
0 commit comments