Skip to content

Commit

Permalink
fix: remove the profile option from the "profiles:remove" command (tw…
Browse files Browse the repository at this point in the history
  • Loading branch information
childish-sambino committed Nov 17, 2020
1 parent 3921950 commit cb58d24
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/commands/profiles/remove.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const { TwilioClientCommand } = require('@twilio/cli-core').baseCommands;
const { BaseCommand, TwilioClientCommand } = require('@twilio/cli-core').baseCommands;
const { TwilioCliError } = require('@twilio/cli-core').services.error;

class ProfilesRemove extends TwilioClientCommand {
Expand Down Expand Up @@ -101,6 +101,6 @@ ProfilesRemove.args = [
required: true,
},
];
ProfilesRemove.flags = TwilioClientCommand.flags;
ProfilesRemove.flags = BaseCommand.flags;

module.exports = ProfilesRemove;

0 comments on commit cb58d24

Please sign in to comment.