Skip to content

Commit

Permalink
Remove semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
eablack committed Apr 29, 2024
1 parent 30b875d commit 8971373
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/cli/src/commands/spaces/wait.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import {Notification, notify} from '@heroku-cli/notifications'
const pgDebug = debug('pg')

export default class Wait extends Command {
static topic = 'spaces';
static description = 'wait for a space to be created';
static topic = 'spaces'
static description = 'wait for a space to be created'
static flags = {
space: flags.string({char: 's', description: 'space to get info of'}),
json: flags.boolean({description: 'output in json format'}),
Expand All @@ -26,11 +26,11 @@ export default class Wait extends Command {
description: 'maximum number of seconds to wait',
default: 25 * 60,
}),
};
}

static args = {
space: Args.string({hidden: true}),
};
}

public async run(): Promise<void> {
const {flags, args} = await this.parse(Wait)
Expand Down

0 comments on commit 8971373

Please sign in to comment.