Merge branch 'main' into quickfix/pyscript_loading_sequence

This commit is contained in:
Fabio Pliger
2022-05-03 09:04:03 -05:00
12 changed files with 34 additions and 23 deletions

View File

@@ -1,6 +1,6 @@
import * as jsyaml from 'js-yaml';
import { pyodideLoaded, loadedEnvironments, mode, addInitializer } from '../stores';
import { pyodideLoaded, addInitializer } from '../stores';
import { loadPackage, loadFromFile } from '../interpreter';
// Premise used to connect to the first available pyodide interpreter

View File

@@ -1,5 +1,5 @@
import { BaseEvalElement } from './base';
import { addClasses, ltrim, htmlDecode } from '../utils';
import { addClasses, htmlDecode } from '../utils';
export class PyTitle extends BaseEvalElement {
shadow: ShadowRoot;

View File

@@ -1,7 +1,6 @@
from js import document, setInterval, console
import micropip
from js import document, console
import asyncio
import io, base64, sys
import io, base64
loop = asyncio.get_event_loop()