Skip to content

Commit

Permalink
Remove superfluous import
Browse files Browse the repository at this point in the history
  • Loading branch information
thorbjoernl committed Apr 26, 2024
1 parent aa40ca3 commit 3728b85
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions pyaerocom/stats/stats.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
from typing import Mapping

import numpy as np

from pyaerocom.stats.data_filters import FilterByLimit, FilterNaN
Expand Down Expand Up @@ -119,6 +117,11 @@ def _get_default_statistic_config() -> dict[str, StatisticsCalculator]:
Returns a base configuration dictionary to be used with `calculate_statistics`
which calculates all implemented statistics. Can be used as a starting
point for adding additional stats using `dict.update()`
Returns
-------
dict :
A fresh copy of the default statistics config dictionary.
"""
return dict(
refdata_mean=lambda x, y, w: np.nanmean(y),
Expand Down

0 comments on commit 3728b85

Please sign in to comment.