Skip to content

Commit

Permalink
Revert mistaken push
Browse files Browse the repository at this point in the history
  • Loading branch information
max-sixty committed Sep 19, 2023
1 parent 73a3103 commit 3d59258
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions xarray/core/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
DTypeLikeSave,
ScalarOrArray,
SideOptions,
Self,
T_Chunks,
T_DataWithCoords,
T_Variable,
Expand Down Expand Up @@ -811,11 +810,11 @@ def pipe(
return func(self, *args, **kwargs)

def rolling_exp(
self,
self: T_DataWithCoords,
window: Mapping[Any, int] | None = None,
window_type: str = "span",
**window_kwargs,
) -> RollingExp[Self]:
) -> RollingExp[T_DataWithCoords]:
"""
Exponentially-weighted moving window.
Similar to EWM in pandas
Expand Down

0 comments on commit 3d59258

Please sign in to comment.