Skip to content

Commit 0dbeed2

Browse files
chaithyagrpaquiteau
authored andcommitted
Fix more comments
1 parent fee1ce0 commit 0dbeed2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/mrinufft/trajectories/tools.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -642,8 +642,8 @@ def _residual(gi):
642642
nb_shots, nb_dimension = kspace_end_loc.shape
643643
G = np.zeros((nb_shots, nb_raster_points, nb_dimension), dtype=np.float32)
644644
for i in range(nb_shots):
645-
start = n_ramp_down[i,0]
646-
G[i, : start] = np.linspace(
645+
start = n_ramp_down[i, 0]
646+
G[i, :start] = np.linspace(
647647
start_gradients[i], gi[i], n_ramp_down[i], endpoint=False, axis=-1
648648
)
649649
if n_plateau[i, d] > 0:

0 commit comments

Comments
 (0)