From 02d00996a5a151dde54c02aaf4deb188e5a877dd Mon Sep 17 00:00:00 2001 From: Johan Medrano Date: Mon, 24 Mar 2025 19:47:00 -0400 Subject: [PATCH] [Fix] Create objects with _from_runtime instead of from_any This should have been solve by [this PR](https://github.com/spm/spm-python/pull/35). --- mpython/runtime.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mpython/runtime.py b/mpython/runtime.py index f2e30ef..302bc81 100644 --- a/mpython/runtime.py +++ b/mpython/runtime.py @@ -33,7 +33,7 @@ def _process_argin(*args, **kwargs): @staticmethod def _process_argout(res): - return MatlabType.from_any(res) + return MatlabType._from_runtime(res) @staticmethod def _import_initialize():