diff --git a/pyscriptjs/src/components/pyrepl.ts b/pyscriptjs/src/components/pyrepl.ts index 9088d8d..928f6ec 100644 --- a/pyscriptjs/src/components/pyrepl.ts +++ b/pyscriptjs/src/components/pyrepl.ts @@ -121,7 +121,7 @@ export class PyRepl extends BaseEvalElement { this.btnRun.onclick = wrap(this); function wrap(el: any){ - async function evaluatePython() { + function evaluatePython() { el.evaluate(); } return evaluatePython;