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