From a8f8100eaac1efbff6c47fff61b1baa78be21d63 Mon Sep 17 00:00:00 2001 From: Anders Hafreager Date: Mon, 10 Jun 2024 12:29:18 +0200 Subject: [PATCH] Fixed print --- 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 7424a1a2dc..0e0bfe4422 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('print("Python SDK successfully installed and imported!")'); } test_cognite_sdk().then((result) => {