Skip to content

Commit 655dba3

Browse files
author
Eric Koleda
committed
Fix lint warnings in Notion sample.
1 parent 3a0ed55 commit 655dba3

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

samples/Notion.gs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ function run() {
2121
Logger.log(JSON.stringify(result, null, 2));
2222
} else {
2323
var authorizationUrl = service.getAuthorizationUrl();
24-
Logger.log('Open the following URL and re-run the script: %s', authorizationUrl);
24+
Logger.log('Open the following URL and re-run the script: %s',
25+
authorizationUrl);
2526
}
2627
}
2728

@@ -53,7 +54,8 @@ function getService() {
5354
.setPropertyStore(PropertiesService.getUserProperties())
5455

5556
.setTokenHeaders({
56-
'Authorization': 'Basic ' + Utilities.base64Encode(CLIENT_ID + ':' + CLIENT_SECRET)
57+
'Authorization': 'Basic ' +
58+
Utilities.base64Encode(CLIENT_ID + ':' + CLIENT_SECRET)
5759
});
5860
}
5961

0 commit comments

Comments
 (0)