Skip to content

Commit

Permalink
minor type hinting fix (#618)
Browse files Browse the repository at this point in the history
  • Loading branch information
martinfleis authored Jun 18, 2024
1 parent 4681ba0 commit 597d565
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion momepy/functional/_diversity.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def _percentile_limited_group_grouper(y, group_index, q=(25, 75)):
def describe_agg(
y: NDArray[np.float64] | Series,
aggregation_key: NDArray[np.float64] | Series,
result_index: pd.Index = None,
result_index: pd.Index | None = None,
q: tuple[float, float] | list[float] | None = None,
statistics: list[str] | None = None,
) -> DataFrame:
Expand Down

0 comments on commit 597d565

Please sign in to comment.