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

@@ -5,7 +5,7 @@ from qibo.result import QuantumState
from qibotn.backends.abstract import QibotnBackend
class QuimbBackend(NumpyBackend, QibotnBackend):
class QuimbBackend(QibotnBackend, NumpyBackend):
def __init__(self, runcard):
super().__init__()