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

Commit d43a862

Browse files
1 parent 9928d56 commit d43a862

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

gapic/schema/api.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -494,13 +494,16 @@ def disambiguate_keyword_sanitize_fname(
494494
ParseDict(
495495
opts.service_yaml_config, service_yaml_config, ignore_unknown_fields=True
496496
)
497-
gapic_version=opts.gapic_version
497+
gapic_version = opts.gapic_version
498498

499499
# Third pass for various selective GAPIC settings; these require
500500
# settings in the service.yaml and so we build the API object
501501
# before doing another pass.
502502
api = cls(
503-
naming=naming, all_protos=protos, service_yaml_config=service_yaml_config, gapic_version=gapic_version
503+
naming=naming,
504+
all_protos=protos,
505+
service_yaml_config=service_yaml_config,
506+
gapic_version=gapic_version,
504507
)
505508

506509
if package in api.all_library_settings:

gapic/utils/options.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ class Options:
7272
# proto plus dependencies delineated by '+'
7373
# For example, 'google.cloud.api.v1+google.cloud.anotherapi.v2'
7474
"proto-plus-deps",
75-
"gapic-version", # A version string following https://peps.python.org/pep-0440
75+
"gapic-version", # A version string following https://peps.python.org/pep-0440
7676
)
7777
)
7878

0 commit comments

Comments
 (0)