Skip to content

Commit f2a44b3

Browse files
Fix pylint: disable=unexpected-keyword-arg
1 parent 72824a3 commit f2a44b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def __init__(
4242
def _statistical_test(
4343
self, X_ref: np.ndarray, X: np.ndarray, **kwargs # noqa: N803
4444
) -> StatisticalResult:
45-
test = mannwhitneyu( # pylint=unexpected-keyword-arg
45+
test = mannwhitneyu( # pylint: disable=unexpected-keyword-arg
4646
x=X_ref,
4747
y=X,
4848
alternative="two-sided",

0 commit comments

Comments
 (0)