Skip to content

Commit 1552556

Browse files
authored
fix(asset): correct asset synthfile (#10355)
1 parent e61f44e commit 1552556

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

packages/google-cloud-asset/synth.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,13 @@
2929
for version in versions:
3030
if version == "v1p1beta1":
3131
config_path = "/google/cloud/asset/v1p1beta1/artman_cloudasset_v1p1beta1.yaml"
32-
artman_output_name = f"cloudasset-{version}"
3332
else:
3433
config_path = f"/google/cloud/asset/artman_cloudasset_{version}.yaml"
35-
artman_output_name=f"asset-{version}"
3634
library = gapic.py_library(
3735
"asset",
3836
version,
3937
config_path=config_path,
40-
artman_output_name=artman_output_name,
38+
artman_output_name=f"asset-{version}",
4139
include_protos=True,
4240
)
4341

0 commit comments

Comments
 (0)