Skip to content

Commit

Permalink
fix: parsed args regression (#1096)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonnalley committed Jun 4, 2024
1 parent 2cabcf2 commit 53f915b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ export abstract class Command {
protected async parse<F extends FlagOutput, B extends FlagOutput, A extends ArgOutput>(
options?: Input<F, B, A>,
argv = this.argv,
): Promise<ParserOutput<F, A>> {
): Promise<ParserOutput<F, B, A>> {
if (!options) options = this.ctor as Input<F, B, A>

const opts = {
Expand Down

0 comments on commit 53f915b

Please sign in to comment.