Skip to content

Commit 1d8bd81

Browse files
committed
Fix linting
Signed-off-by: Ben <[email protected]>
1 parent 4b0c3b9 commit 1d8bd81

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sdk/namespace_gcp.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class NamespaceGCP {
4949
private_key: this.private_key,
5050
}
5151
});
52-
this.gcs.createHmacKey(client_email).then((res) => {
52+
this.gcs.createHmacKey(client_email).then(res => {
5353
this.hmac_key = res[0];
5454
this.hmac_secret = res[1];
5555
});
@@ -479,7 +479,7 @@ class NamespaceGCP {
479479

480480
async get_object_tagging(params, object_sdk) {
481481
dbg.log0('NamespaceGCP.get_object_tagging:', this.bucket, inspect(params));
482-
const obj_tags = (await this.read_object_md(params, object_sdk)).xattr
482+
const obj_tags = (await this.read_object_md(params, object_sdk)).xattr;
483483
// Converting tag dictionary to array of key-value object pairs
484484
const tags = Object.entries(obj_tags).map(([key, value]) => ({ key, value }));
485485
return {

0 commit comments

Comments
 (0)