Skip to content

Commit

Permalink
make eslint happy
Browse files Browse the repository at this point in the history
  • Loading branch information
paulrouget committed Feb 7, 2024
1 parent eebbc93 commit 049bf98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/converter.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,10 +110,10 @@ exports.star_listening = () => {
if (filename) {
args.push(filename);
}
let stdout = await new Promise((ok, ko) => {
let stdout = await new Promise((ok, _ko) => {
let proc = spawn(filepicker, args);
let stdout = "";
proc.stdout.on("data", data => stdout += data);
proc.stdout.on("data", (data) => stdout += data);
proc.on("exit", (code) => {
if (code == 0) {
ok(stdout);
Expand Down

0 comments on commit 049bf98

Please sign in to comment.