Skip to content

Commit 1351e1e

Browse files
committed
fix: lint issues
1 parent c527974 commit 1351e1e

File tree

3 files changed

+17
-5
lines changed

3 files changed

+17
-5
lines changed

secret-manager/regional_samples/createRegionalSecretWithAnnotations.js

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,13 @@
1414

1515
'use strict';
1616

17-
async function main(projectId, locationId, secretId, annotationKey, annotationValue) {
17+
async function main(
18+
projectId,
19+
locationId,
20+
secretId,
21+
annotationKey,
22+
annotationValue
23+
) {
1824
// [START secretmanager_create_regional_secret_with_annotations]
1925
/**
2026
* TODO(developer): Uncomment these variables before running the sample.
@@ -55,4 +61,4 @@ async function main(projectId, locationId, secretId, annotationKey, annotationVa
5561
}
5662

5763
const args = process.argv.slice(2);
58-
main(...args).catch(console.error);
64+
main(...args).catch(console.error);

secret-manager/regional_samples/editRegionalSecretAnnotations.js

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,13 @@
1414

1515
'use strict';
1616

17-
async function main(projectId, locationId, secretId, annotationKey, annotationValue) {
17+
async function main(
18+
projectId,
19+
locationId,
20+
secretId,
21+
annotationKey,
22+
annotationValue
23+
) {
1824
// [START secretmanager_edit_regional_secret_annotations]
1925
/**
2026
* TODO(developer): Uncomment these variables before running the sample.
@@ -65,4 +71,4 @@ async function main(projectId, locationId, secretId, annotationKey, annotationVa
6571
}
6672

6773
const args = process.argv.slice(2);
68-
main(...args).catch(console.error);
74+
main(...args).catch(console.error);

secret-manager/regional_samples/viewRegionalSecretAnnotations.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,4 @@ async function main(projectId, locationId, secretId) {
4949
}
5050

5151
const args = process.argv.slice(2);
52-
main(...args).catch(console.error);
52+
main(...args).catch(console.error);

0 commit comments

Comments
 (0)