Skip to content

Commit c7c3304

Browse files
committed
minor: fix another linting issue
1 parent 47a7a37 commit c7c3304

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pylops_mpi/basicoperators/FirstDerivative.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ def _rmatvec_forward(self, x: DistributedArray) -> DistributedArray:
172172
def _matvec_backward(self, x: DistributedArray) -> DistributedArray:
173173
ncp = get_module(x.engine)
174174
y = DistributedArray(global_shape=x.global_shape, local_shapes=x.local_shapes,
175-
axis=x.axis, engine=x.engine, dtype=self.dtype)
175+
axis=x.axis, engine=x.engine, dtype=self.dtype)
176176
ghosted_x = x.add_ghost_cells(cells_front=1)
177177
y_backward = ghosted_x[1:] - ghosted_x[:-1]
178178
if self.rank == 0:

0 commit comments

Comments
 (0)