remove unneeded import (#945)

This commit is contained in:
Madhur Tandon
2022-11-14 17:07:33 +05:30
committed by GitHub
parent b445f8a834
commit 9521bc7175

View File

@@ -3,7 +3,7 @@ import './styles/pyscript_base.css';
import { loadConfigFromElement } from './pyconfig'; import { loadConfigFromElement } from './pyconfig';
import type { AppConfig } from './pyconfig'; import type { AppConfig } from './pyconfig';
import type { Runtime } from './runtime'; import type { Runtime } from './runtime';
import { type Plugin, PluginManager } from './plugin'; import { PluginManager } from './plugin';
import { make_PyScript, initHandlers, mountElements } from './components/pyscript'; import { make_PyScript, initHandlers, mountElements } from './components/pyscript';
import { PyLoader } from './components/pyloader'; import { PyLoader } from './components/pyloader';
import { PyodideRuntime } from './pyodide'; import { PyodideRuntime } from './pyodide';