Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/run_python.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ export async function runCode(
throw e
}
await py.pyodide.runPythonAsync(`
import pydantic, pydantic_core
print(f'pydantic version: v{pydantic.__version__}, pydantic-core version: v{pydantic_core.__version__}')
import pydantic, pydantic_core, pydantic_extra_types
print(f'pydantic version: v{pydantic.__version__}, pydantic-core version: v{pydantic_core.__version__}', pydantic-extra-types version: v{pydantic_extra_types.__version__}')
`)
try {
await py.pyodide.runPythonAsync(code)
Expand Down