Skip to content

Commit

Permalink
Fix pyodide?
Browse files Browse the repository at this point in the history
  • Loading branch information
monosans committed Aug 30, 2024
1 parent 29f9926 commit 2931a74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/static/js/worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ async function loadPyodideAndPackages() {
self.postMessage({ type: "status", message: "Loading micropip" });
await self.pyodide.loadPackage("micropip");
self.postMessage({ type: "status", message: "Importing micropip" });
const micropip = await self.pyodide.pyImport("micropip");
const micropip = await self.pyodide.pyimport("micropip");
self.postMessage({ type: "status", message: "Installing djLint" });
await micropip.install([
// These packages have no prebuilt wheels
Expand Down

0 comments on commit 2931a74

Please sign in to comment.