Skip to content

Commit

Permalink
Lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
keeramis committed Dec 27, 2024
1 parent 3e5fc02 commit 575d3d7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/cli/esim.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ module.exports = ({ commandProcessor, root }) => {
}
}),
handler: (args) => {
const eSimCommands = require('../cmd/esim');
const ESimCommands = require('../cmd/esim');
if (args.bulk) {
return new eSimCommands().bulkProvisionCommand(args);
return new ESimCommands().bulkProvisionCommand(args);
} else {
return new eSimCommands().provisionCommand(args);
return new ESimCommands().provisionCommand(args);
}
},
examples: {
Expand Down

0 comments on commit 575d3d7

Please sign in to comment.