Skip to content

Commit 8bb3704

Browse files
committed
Lint fixes
1 parent 1863ded commit 8bb3704

File tree

3 files changed

+531
-533
lines changed

3 files changed

+531
-533
lines changed

src/cli/esim.js

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -8,26 +8,26 @@ module.exports = ({ commandProcessor, root }) => {
88
'lpa': {
99
description: 'Provide the LPA tool path'
1010
},
11-
'input': {
12-
description: 'Provide the input json file path'
13-
},
14-
'output': {
15-
description: 'Provide the output json file path'
16-
},
11+
'input': {
12+
description: 'Provide the input json file path'
13+
},
14+
'output': {
15+
description: 'Provide the output json file path'
16+
},
1717
'binary': {
18-
description: 'Provide the path to the binaries'
19-
},
20-
'bulk': {
21-
description: 'Provision multiple devices'
22-
}
18+
description: 'Provide the path to the binaries'
19+
},
20+
'bulk': {
21+
description: 'Provision multiple devices'
22+
}
2323
}),
2424
handler: (args) => {
25-
const eSimCommands = require('../cmd/esim');
25+
const eSimCommands = require('../cmd/esim');
2626
if (args.bulk) {
27-
return new eSimCommands().bulkProvisionCommand(args);
28-
} else {
29-
return new eSimCommands().provisionCommand(args);
30-
}
27+
return new eSimCommands().bulkProvisionCommand(args);
28+
} else {
29+
return new eSimCommands().provisionCommand(args);
30+
}
3131
},
3232
examples: {
3333
'$0 $command': 'TBD'

0 commit comments

Comments
 (0)