fix: change the order or the inheritance to impose the correct __mro__

This commit is contained in:
MatteoRobbiati
2025-02-10 11:18:09 +01:00
parent a5f7d1fb14
commit 30c3bba23a
4 changed files with 11 additions and 7 deletions

View File

@@ -8,7 +8,7 @@ from qibotn.backends.abstract import QibotnBackend
CUDA_TYPES = {}
class CuTensorNet(NumpyBackend, QibotnBackend): # pragma: no cover
class CuTensorNet(QibotnBackend, NumpyBackend): # pragma: no cover
# CI does not test for GPU
"""Creates CuQuantum backend for QiboTN."""