Skip to content

Commit ecfca77

Browse files
committed
Fix blockm
1 parent 47efed5 commit ecfca77

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pygmt/src/blockm.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,11 +205,11 @@ def blockmedian( # noqa: PLR0913
205205
outfile: PathLike | None = None,
206206
spacing: Sequence[float | str] | None = None,
207207
region: Sequence[float | str] | str | None = None,
208-
registration: Literal["gridline", "pixel"] | bool = False,
209208
verbose: Literal["quiet", "error", "warning", "timing", "info", "compat", "debug"]
210209
| bool = False,
211210
incols: int | str | Sequence[int | str] | None = None,
212211
outcols: int | str | Sequence[int | str] | None = None,
212+
registration: Literal["gridline", "pixel"] | bool = False,
213213
**kwargs,
214214
) -> pd.DataFrame | np.ndarray | None:
215215
r"""
@@ -320,11 +320,11 @@ def blockmode( # noqa: PLR0913
320320
outfile: PathLike | None = None,
321321
spacing: Sequence[float | str] | None = None,
322322
region: Sequence[float | str] | str | None = None,
323-
registration: Literal["gridline", "pixel"] | bool = False,
324323
verbose: Literal["quiet", "error", "warning", "timing", "info", "compat", "debug"]
325324
| bool = False,
326325
incols: int | str | Sequence[int | str] | None = None,
327326
outcols: int | str | Sequence[int | str] | None = None,
327+
registration: Literal["gridline", "pixel"] | bool = False,
328328
**kwargs,
329329
) -> pd.DataFrame | np.ndarray | None:
330330
r"""

0 commit comments

Comments
 (0)