From f121ac168b5b207a77be2ef8d871c48105549321 Mon Sep 17 00:00:00 2001 From: Igor Konnov Date: Mon, 23 Dec 2024 09:58:42 +0100 Subject: [PATCH] fix formatting --- solarkraft/src/main.ts | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) 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, }