Skip to content

Commit

Permalink
fix: fix type hint from float to Number
Browse files Browse the repository at this point in the history
  • Loading branch information
nmaarnio committed Sep 18, 2024
1 parent 5d93c8c commit 014fc78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eis_toolkit/exploratory_analyses/descriptive_statistics.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def _descriptive_statistics(
@beartype
def descriptive_statistics_dataframe(
input_data: Union[pd.DataFrame, gpd.GeoDataFrame], column: str
) -> Dict[str, float]:
) -> Dict[str, Number]:
"""Compute descriptive statistics from vector data.
Computes the following statistics:
Expand Down

0 comments on commit 014fc78

Please sign in to comment.