Skip to content

Commit

Permalink
Silence warning
Browse files Browse the repository at this point in the history
  • Loading branch information
clampr committed Sep 26, 2023
1 parent f2bce60 commit f16bb4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meteostat/series/interpolate.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def interpolate(self, limit: int = 3):
temp = copy(self)

# Apply interpolation
temp._data = temp._data.groupby("station").apply(
temp._data = temp._data.groupby("station", group_keys=False).apply(
lambda group: group.interpolate(
method="linear", limit=limit, limit_direction="both", axis=0
)
Expand Down

0 comments on commit f16bb4e

Please sign in to comment.