From 971b6903fad39ccf2218a453f9af050d1589f547 Mon Sep 17 00:00:00 2001 From: Princiya Sequeira Date: Thu, 28 Apr 2022 00:19:22 +0200 Subject: [PATCH] fixed linting errors --- pyscriptjs/src/components/pyrepl.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;