From 2fe7a06d4ae42a312963b6f484606b18ff9e8b6d Mon Sep 17 00:00:00 2001 From: Renato Mello Date: Mon, 14 Oct 2024 16:30:15 +0400 Subject: [PATCH] rename arg --- src/qibo/backends/abstract.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qibo/backends/abstract.py b/src/qibo/backends/abstract.py index 24be7211a8..8f84a39532 100644 --- a/src/qibo/backends/abstract.py +++ b/src/qibo/backends/abstract.py @@ -378,7 +378,7 @@ def calculate_singular_value_decomposition(self, matrix): # pragma: no cover @abc.abstractmethod def calculate_jacobian_matrix( - self, circuit, parameters, complex: bool = True + self, circuit, parameters, return_complex: bool = True ): # pragma: no cover """Calculate the Jacobian matrix of ``circuit`` with respect to varables ``params``.""" raise_error(NotImplementedError)