Skip to content

Commit

Permalink
Try to fix typing
Browse files Browse the repository at this point in the history
  • Loading branch information
dcherian committed Jul 11, 2024
1 parent 205c2a7 commit 5938e67
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion xarray/core/dataarray.py
Original file line number Diff line number Diff line change
Expand Up @@ -6684,7 +6684,7 @@ def interp_calendar(
def groupby(
self,
group: (
Hashable | DataArray | IndexVariable | Mapping[Hashable, Grouper] | None
Hashable | DataArray | IndexVariable | Mapping[Any, Grouper] | None
) = None,
squeeze: bool | None = None,
restore_coord_dims: bool = False,
Expand Down
2 changes: 1 addition & 1 deletion xarray/core/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -10258,7 +10258,7 @@ def interp_calendar(
def groupby(
self,
group: (
Hashable | DataArray | IndexVariable | Mapping[Hashable, Grouper] | None
Hashable | DataArray | IndexVariable | Mapping[Any, Grouper] | None
) = None,
squeeze: bool | None = None,
restore_coord_dims: bool = False,
Expand Down

0 comments on commit 5938e67

Please sign in to comment.