Skip to content

Commit 611b4d6

Browse files
authored
Fix linter issues
1 parent 14cea10 commit 611b4d6

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/index.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,10 +91,7 @@ async function main() {
9191
}
9292
if (options.bearer) {
9393
parserOptions.headers = new Headers();
94-
parserOptions.headers.set(
95-
"Authorization",
96-
`Bearer ${options.bearer}`
97-
);
94+
parserOptions.headers.set("Authorization", `Bearer ${options.bearer}`);
9895
}
9996
switch (options.format) {
10097
case "swagger": // deprecated

0 commit comments

Comments
 (0)