Skip to content

Commit

Permalink
Run black code formatter on kolmogorov_smirnov.py file
Browse files Browse the repository at this point in the history
  • Loading branch information
hoanganhngo610 committed Oct 30, 2023
1 parent 0bf9dc0 commit 38da1de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion river/stats/kolmogorov_smirnov.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,4 +285,4 @@ def test_ks_threshold(self, ca):
This test will return `True` if we **reject** the null hypothesis that
the two windows follow the same distribution.
"""
return self.get() > ca * (2 * self.n_samples / self.n_samples ** 2) ** 0.5
return self.get() > ca * (2 * self.n_samples / self.n_samples**2) ** 0.5

0 comments on commit 38da1de

Please sign in to comment.