mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-19 18:27:29 -05:00
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
This commit is contained in:
@@ -65,8 +65,9 @@ const donkey = (options = {}) => {
|
||||
const result = await execute(dedent(code));
|
||||
executed = true;
|
||||
return result;
|
||||
} catch (e) {
|
||||
console.error(e);
|
||||
}
|
||||
catch (e) { console.error(e); }
|
||||
},
|
||||
evaluate: async (code) => {
|
||||
if (!evaluated) {
|
||||
@@ -79,8 +80,9 @@ const donkey = (options = {}) => {
|
||||
const result = await evaluate(dedent(code));
|
||||
evaluated = true;
|
||||
return result;
|
||||
} catch (e) {
|
||||
console.error(e);
|
||||
}
|
||||
catch (e) { console.error(e); }
|
||||
},
|
||||
clear: () => terminal.clear(),
|
||||
reset: () => terminal.reset(),
|
||||
|
||||
Reference in New Issue
Block a user