Skip to content

Commit

Permalink
Lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
keeramis committed Dec 3, 2024
1 parent b3a5e40 commit 7d07af1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cmd/esim.js
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ module.exports = class ESimCommands extends CLICommandBase {
let usbDevice;
let atOkReceived = false;
const timeout = Date.now() + 30000; // Set a 30-second timeout

while (Date.now() < timeout && !atOkReceived) {
try {
if (!usbDevice?.isOpen) {
Expand All @@ -365,7 +365,7 @@ module.exports = class ESimCommands extends CLICommandBase {
}
return atOkReceived;
}

async _runFlashCommand(device, fwPath) {
const flashCmdInstance = new FlashCommand();
await flashCmdInstance.flashLocal({
Expand Down

0 comments on commit 7d07af1

Please sign in to comment.