diff --git a/solarkraft/src/main.ts b/solarkraft/src/main.ts index 362abe55..4eb2601c 100644 --- a/solarkraft/src/main.ts +++ b/solarkraft/src/main.ts @@ -142,13 +142,12 @@ const accountsCmd = { command: ['accounts'], desc: 'construct an accounts mapping, needed for input generation', builder: (yargs: any) => - defaultOpts(yargs) - .option('out', { - desc: 'The name of the file to output the accounts mapping to', - type: 'string', - require: false, - default: 'accounts.json', - }), + defaultOpts(yargs).option('out', { + desc: 'The name of the file to output the accounts mapping to', + type: 'string', + require: false, + default: 'accounts.json', + }), handler: extractAccounts, }