Skip to content

Commit 4d5347f

Browse files
committed
fix check bug
Signed-off-by: Niels Bantilan <[email protected]>
1 parent 35721b8 commit 4d5347f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandera/backends/polars/checks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def postprocess(
5757
passed = check_output.select([pl.col(CHECK_OUTPUT_KEY).all()])
5858
failure_cases = (
5959
check_obj.dataframe.with_context(check_output)
60-
.filter(pl.col(CHECK_OUTPUT_KEY))
60+
.filter(pl.col(CHECK_OUTPUT_KEY).is_not())
6161
.rename({check_obj.key: FAILURE_CASE_KEY})
6262
.select(FAILURE_CASE_KEY)
6363
)

0 commit comments

Comments
 (0)