Skip to content

Commit b355cfd

Browse files
committed
Run new prettier against code
1 parent 32d30d0 commit b355cfd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/webServiceClient.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,10 @@ export default class WebServiceClient {
7272
};
7373

7474
return new Promise((resolve, reject) => {
75-
const req = https.request(options, response => {
75+
const req = https.request(options, (response) => {
7676
let data = '';
7777

78-
response.on('data', chunk => {
78+
response.on('data', (chunk) => {
7979
data += chunk;
8080
});
8181

0 commit comments

Comments
 (0)