Remove redundant variable. (#713)

This commit is contained in:
N. Taylor Mullen 2025-06-02 21:18:01 -07:00 committed by GitHub
parent 74801e9004
commit cf3e1a07c1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 5 deletions

View File

@ -116,12 +116,8 @@ async function main() {
}
// Non-interactive mode handled by runNonInteractive
const nonInteractiveConfigResult = await loadNonInteractiveConfig(
config,
settings,
);
const nonInteractiveConfig = await loadNonInteractiveConfig(config, settings);
const nonInteractiveConfig = nonInteractiveConfigResult;
await runNonInteractive(nonInteractiveConfig, input);
process.exit(0);
}