Skip to content

Commit 6854d45

Browse files
committed
style(sandbox): add trailing comma to runtime options
Add trailing comma to the runtime options object for better code consistency and easier future modifications. 在 runtime options 对象中添加尾随逗号,以提高代码一致性和便于将来修改。 Change-Id: I12677cad0fd7ac1d12c0fc5d8ecaab94ec437c4d Signed-off-by: OhYee <oyohyee@oyohyee.com>
1 parent d526fec commit 6854d45

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/sandbox/api/control.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ export class SandboxControlAPI extends ControlAPI {
275275
try {
276276
const client = this.getClient(config);
277277
const runtime = new $Util.RuntimeOptions({
278-
readTimeout: 30000
278+
readTimeout: 30000,
279279
});
280280

281281
const response = await client.createSandboxWithOptions(

0 commit comments

Comments
 (0)