Skip to content

Commit

Permalink
chore: deal with reformat aftermath
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonnalley committed Sep 28, 2023
1 parent de1f730 commit 0f56a9f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/parser/parse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -391,8 +391,8 @@ export class Parser<
...fws,
helpFunction:
typeof fws.inputFlag.flag.defaultHelp === 'function'
? // @ts-expect-error flag type isn't specific enough to know defaultHelp will definitely be there
(i: FlagWithStrategy, flags: Record<string, string>, ...context) =>
? (i: FlagWithStrategy, flags: Record<string, string>, ...context) =>
// @ts-expect-error flag type isn't specific enough to know defaultHelp will definitely be there
i.inputFlag.flag.defaultHelp({options: i.inputFlag, flags}, ...context)
: // @ts-expect-error flag type isn't specific enough to know defaultHelp will definitely be there
(i: FlagWithStrategy) => i.inputFlag.flag.defaultHelp,
Expand Down

0 comments on commit 0f56a9f

Please sign in to comment.