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

Commit 262c60e

Browse files
committed
lint
1 parent 0ebbe41 commit 262c60e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

google/api_core/path_template.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,9 @@ def transcode(http_options, message=None, **request_kwargs):
325325
else:
326326
# gapic-generator-python appends underscores to field names
327327
# that collide with python keywords.
328-
leftovers = {key.rstrip('_') : val for key, val in leftovers.items()}
328+
leftovers = {
329+
key.rstrip("_"): val for key, val in leftovers.items()
330+
}
329331
request["body"] = leftovers.pop(body)
330332
except (KeyError, AttributeError):
331333
continue

0 commit comments

Comments
 (0)