From 51b9d2fb11979d4713012087a74ce02176199b65 Mon Sep 17 00:00:00 2001 From: Justus Kuhlmann Date: Tue, 4 Nov 2025 09:58:34 +0000 Subject: [PATCH] undo signature change in linalg --- pyerrors/linalg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyerrors/linalg.py b/pyerrors/linalg.py index 1393ae3e..324c4007 100644 --- a/pyerrors/linalg.py +++ b/pyerrors/linalg.py @@ -55,7 +55,7 @@ def matmul(*operands) -> ndarray: return res else: - def multi_dot(operands, part: Literal["Real", "Imag"]): + def multi_dot(operands): stack = operands[0] for op in operands[1:]: stack = stack @ op