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

View File

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