Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
hollymandel committed Oct 25, 2024
1 parent bde9923 commit 2e781a6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions xarray/core/dataarray.py
Original file line number Diff line number Diff line change
Expand Up @@ -2235,8 +2235,8 @@ def interp(
New coordinate can be a scalar, array-like or DataArray.
If DataArrays are passed as new coordinates, their dimensions are
used for the broadcasting. Missing values are skipped.
method : "linear", "nearest", "zero", "slinear", "quadratic", "cubic",
"quintic", "polynomial", "pchip", "barycentric", "krogh", "akima", "makima"
method : { "linear", "nearest", "zero", "slinear", "quadratic", "cubic", \
"quintic", "polynomial", "pchip", "barycentric", "krogh", "akima", "makima" }
Interpolation method to use (see descriptions above).
assume_sorted : bool, default: False
If False, values of x can be in any order and they are sorted
Expand Down Expand Up @@ -2390,8 +2390,8 @@ def interp_like(
Object with an 'indexes' attribute giving a mapping from dimension
names to an 1d array-like, which provides coordinates upon
which to index the variables in this dataset. Missing values are skipped.
method : "linear", "nearest", "zero", "slinear", "quadratic", "cubic",
"quintic", "polynomial", "pchip", "barycentric", "krogh", "akima", "makima"
method : { "linear", "nearest", "zero", "slinear", "quadratic", "cubic", \
"quintic", "polynomial", "pchip", "barycentric", "krogh", "akima", "makima" }
Interpolation method to use (see descriptions above).
assume_sorted : bool, default: False
If False, values of coordinates that are interpolated over can be
Expand Down
8 changes: 4 additions & 4 deletions xarray/core/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -3903,8 +3903,8 @@ def interp(
New coordinate can be a scalar, array-like or DataArray.
If DataArrays are passed as new coordinates, their dimensions are
used for the broadcasting. Missing values are skipped.
method : "linear", "nearest", "zero", "slinear", "quadratic", "cubic",
"quintic", "polynomial", "pchip", "barycentric", "krogh", "akima", "makima"
method : { "linear", "nearest", "zero", "slinear", "quadratic", "cubic", \
"quintic", "polynomial", "pchip", "barycentric", "krogh", "akima", "makima" }
Interpolation method to use (see descriptions above).
assume_sorted : bool, default: False
If False, values of coordinates that are interpolated over can be
Expand Down Expand Up @@ -4195,8 +4195,8 @@ def interp_like(
Object with an 'indexes' attribute giving a mapping from dimension
names to an 1d array-like, which provides coordinates upon
which to index the variables in this dataset. Missing values are skipped.
method : "linear", "nearest", "zero", "slinear", "quadratic", "cubic",
"quintic", "polynomial", "pchip", "barycentric", "krogh", "akima", "makima"
method : { "linear", "nearest", "zero", "slinear", "quadratic", "cubic", \
"quintic", "polynomial", "pchip", "barycentric", "krogh", "akima", "makima" }
Interpolation method to use (see descriptions above).
assume_sorted : bool, default: False
If False, values of coordinates that are interpolated over can be
Expand Down

0 comments on commit 2e781a6

Please sign in to comment.