mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-08 08:22:54 +00:00
chore(lint): enable no-promise-executor-return
This commit is contained in:
@@ -270,7 +270,9 @@ HTTPServer(("0.0.0.0", 8000), Handler).serve_forever()
|
||||
},
|
||||
};
|
||||
}
|
||||
await new Promise((resolve) => setTimeout(resolve, 500));
|
||||
await new Promise((resolve) => {
|
||||
setTimeout(resolve, 500);
|
||||
});
|
||||
}
|
||||
|
||||
await runCommand({
|
||||
|
||||
Reference in New Issue
Block a user