Skip to content

Commit dfec5b6

Browse files
ruff error fix
1 parent f1c076c commit dfec5b6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

oceans_sf/shift_array2d.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
import numpy as np
22

33

4-
def shift_array2d(input_array, shift_right=1, shift_down=1, boundary="Periodic"): # noqa: D417
4+
def shift_array2d( # noqa: D417
5+
input_array, shift_right=1, shift_down=1, boundary="Periodic"
6+
):
57
"""
68
Shifts 2D array right and down by the specified integer amounts and returns
79
the shifted arrays. Either wraps the array or shifts and pads with NaNs.

0 commit comments

Comments
 (0)