Skip to content

Commit

Permalink
fix another xylim type
Browse files Browse the repository at this point in the history
  • Loading branch information
headtr1ck committed Sep 11, 2023
1 parent 428a1ed commit 2ab1402
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions xarray/plot/dataarray_plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -782,9 +782,9 @@ def _plot1d(plotfunc):
Specify tick locations for x-axes.
yticks : ArrayLike or None, optional
Specify tick locations for y-axes.
xlim : ArrayLike or None, optional
xlim : tuple[float, float] or None, optional
Specify x-axes limits.
ylim : ArrayLike or None, optional
ylim : tuple[float, float] or None, optional
Specify y-axes limits.
cmap : matplotlib colormap name or colormap, optional
The mapping from data values to color space. Either a
Expand Down Expand Up @@ -869,8 +869,8 @@ def newplotfunc(
yscale: ScaleOptions = None,
xticks: ArrayLike | None = None,
yticks: ArrayLike | None = None,
xlim: ArrayLike | None = None,
ylim: ArrayLike | None = None,
xlim: tuple[float, float] | None = None,
ylim: tuple[float, float] | None = None,
cmap: str | Colormap | None = None,
vmin: float | None = None,
vmax: float | None = None,
Expand Down

0 comments on commit 2ab1402

Please sign in to comment.