remove noop code (#728)

This commit is contained in:
Olcan 2025-06-03 13:47:53 -07:00 committed by GitHub
parent 00a9f654a3
commit 9df94103ac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 6 deletions

View File

@ -97,12 +97,7 @@ async function parseArguments(): Promise<CliArgs> {
.alias('h', 'help') .alias('h', 'help')
.strict().argv; .strict().argv;
const finalArgv: CliArgs = { return argv;
...argv,
sandbox: argv.sandbox,
};
return finalArgv;
} }
// This function is now a thin wrapper around the server's implementation. // This function is now a thin wrapper around the server's implementation.