From 32d937433109b55c8f6632d402859a38520ee153 Mon Sep 17 00:00:00 2001 From: Bu Sun Kim <8822365+busunkim96@users.noreply.github.com> Date: Thu, 6 Feb 2020 16:23:09 -0800 Subject: [PATCH] fix(asset): correct asset synthfile (#10355) --- synth.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/synth.py b/synth.py index e6a0077c..12f50be7 100644 --- a/synth.py +++ b/synth.py @@ -29,15 +29,13 @@ for version in versions: if version == "v1p1beta1": config_path = "/google/cloud/asset/v1p1beta1/artman_cloudasset_v1p1beta1.yaml" - artman_output_name = f"cloudasset-{version}" else: config_path = f"/google/cloud/asset/artman_cloudasset_{version}.yaml" - artman_output_name=f"asset-{version}" library = gapic.py_library( "asset", version, config_path=config_path, - artman_output_name=artman_output_name, + artman_output_name=f"asset-{version}", include_protos=True, )