Skip to content

Commit e884298

Browse files
committed
fix: lint
1 parent de43acc commit e884298

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/tweet-release.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ async function sendTweet(status) {
8484
}
8585
};
8686

87-
const req = https.request((options, res => {
87+
const req = https.request(options, (res) => {
8888
let data = '';
8989
res.on('data', chunk => (data += chunk));
9090
res.on('end', () => {
@@ -102,7 +102,7 @@ async function sendTweet(status) {
102102
reject(new Error(errMsg));
103103
}
104104
});
105-
}));
105+
});
106106

107107
req.on('error', err => reject(err));
108108
req.write(body);

0 commit comments

Comments
 (0)