Remove 'Implicit Async', Don't Await runtime.run() (#928)

* Revert to runPython instead of await runPythonAsync

* "Implicit Coroutines" are no longer permitted in py-script tags

* Tests added for the above

* xfail test_importmap (See #938)
This commit is contained in:
Jeff Glass
2022-11-16 13:11:40 -06:00
committed by GitHub
parent 41ebaaf366
commit 0b23310a06
17 changed files with 318 additions and 74 deletions

View File

@@ -12,7 +12,7 @@ export function make_PyScript(runtime: Runtime) {
ensureUniqueId(this);
const pySrc = await this.getPySrc();
this.innerHTML = '';
await pyExec(runtime, pySrc, this);
pyExec(runtime, pySrc, this);
}
async getPySrc(): Promise<string> {