From f0c389d1881d73ab96f1434dabb8b5f675f5fe4a Mon Sep 17 00:00:00 2001 From: Anders Hafreager Date: Mon, 10 Jun 2024 12:30:20 +0200 Subject: [PATCH] Printing in JS a print statement in Python --- scripts/test-pyodide.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/test-pyodide.js b/scripts/test-pyodide.js index 0e0bfe4422..17791a85a6 100644 --- a/scripts/test-pyodide.js +++ b/scripts/test-pyodide.js @@ -45,7 +45,7 @@ server.listen(PORT, () => { } await pyodide.runPythonAsync("from cognite.client import CogniteClient"); - return pyodide.runPythonAsync('print("Python SDK successfully installed and imported!")'); + return pyodide.runPythonAsync('"Python SDK successfully installed and imported!"'); } test_cognite_sdk().then((result) => {