From 412d1791f75762f30cf325ad50534b3b4f3e3958 Mon Sep 17 00:00:00 2001 From: Alessandro Candido Date: Fri, 6 Sep 2024 16:16:51 +0200 Subject: [PATCH] fix: Import qasm executor from defining module In C API --- capi/src/wrapper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/capi/src/wrapper.py b/capi/src/wrapper.py index f002e299a8..e08071d66c 100644 --- a/capi/src/wrapper.py +++ b/capi/src/wrapper.py @@ -1,7 +1,7 @@ # This file is part of from cqibolab import ffi -from qibolab import execute_qasm as py_execute_qasm +from qibolab.backends import execute_qasm as py_execute_qasm @ffi.def_extern()