Skip to content

Commit 72824a3

Browse files
Fix pylint=unexpected-keyword-arg line
1 parent 4e6616d commit 72824a3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frouros/detectors/data_drift/batch/statistical_test/mann_whitney_u.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@ def __init__(
4242
def _statistical_test(
4343
self, X_ref: np.ndarray, X: np.ndarray, **kwargs # noqa: N803
4444
) -> StatisticalResult:
45-
test = mannwhitneyu(
45+
test = mannwhitneyu( # pylint=unexpected-keyword-arg
4646
x=X_ref,
4747
y=X,
4848
alternative="two-sided",
49-
nan_policy="raise", # pylint=unexpected-keyword-arg
49+
nan_policy="raise",
5050
**kwargs,
5151
)
5252
test = StatisticalResult(

0 commit comments

Comments
 (0)