Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
keeramis committed May 14, 2024
1 parent 0c9e0ce commit 925e802
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/cmd/usb.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
const os = require('os');
const { spin } = require('../app/ui');
const { delay, asyncMapSeries, buildDeviceFilter } = require('../lib/utilities');
const { getDevice, formatDeviceInfo } = require('./device-util');
Expand Down Expand Up @@ -247,7 +246,7 @@ module.exports = class UsbCommand extends CLICommandBase {
.catch(e => lastError = e)
.finally(() => usbDevice.close());
});
return spin(Promise.all(p), `Sending a command to the device...`);
return spin(Promise.all(p), 'Sending a command to the device...');
})
.then(() => {
if (lastError){
Expand Down

0 comments on commit 925e802

Please sign in to comment.