From 6c89146402027e0252bb1aeefe7f6d1cea466333 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 26 Feb 2024 12:50:23 +0000 Subject: [PATCH] [pre-commit.ci] Automatic python formatting --- spyrit/dev/recon.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/spyrit/dev/recon.py b/spyrit/dev/recon.py index 0cb55192..da3ff2be 100644 --- a/spyrit/dev/recon.py +++ b/spyrit/dev/recon.py @@ -116,9 +116,7 @@ class PseudoInverseStore2(nn.Module): """ - def __init__( - self, meas_op: LinearSplit, reg: float = 1e-15, learn: bool = False - ): + def __init__(self, meas_op: LinearSplit, reg: float = 1e-15, learn: bool = False): H = meas_op.get_H() M, N = H.shape H_pinv = np.linalg.pinv(H, rcond=reg)