Skip to content

Commit

Permalink
FIX: remove unexpected kwarg
Browse files Browse the repository at this point in the history
  • Loading branch information
MarekWadinger committed Dec 8, 2023
1 parent 742aaf1 commit 4921af9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion river/covariance/emp.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def update_many(self, X: pd.DataFrame):
)
}

self._update_from_state(n=n, mean=mean, cov=cov, ddof=self.ddof)
self._update_from_state(n=n, mean=mean, cov=cov)

def _update_from_state(self, n: int, mean: dict, cov: float | dict):
"""Update from state information.
Expand Down

0 comments on commit 4921af9

Please sign in to comment.