remove async from method that is not async anymore

This commit is contained in:
Fabio Pliger
2022-05-03 09:18:57 -05:00
parent f5a6a87328
commit f957fdaaa6

View File

@@ -218,7 +218,7 @@ function createWidget(name: string, code: string, klass: string) {
});
}
async registerWidget() {
registerWidget() {
const pyodide = runtime;
console.log('new widget registered:', this.name);
pyodide.globals.set(this.id, this.proxy);