Skip to content

Commit 32657ce

Browse files
committed
Fix syntax error in docstring example
1 parent fe1df01 commit 32657ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pointblank/validate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10016,7 +10016,7 @@ def col_pct_null(
1001610016
```{python}
1001710017
validation = (
1001810018
pb.Validate(data=tbl)
10019-
.col_pct_null(columns="b", p=0.375, tol=(0.1, 0.3) # Expect 3 Nulls, allow -10%/+30%
10019+
.col_pct_null(columns="b", p=0.375, tol=(0.1, 0.3)) # Expect 3 Nulls, allow -10%/+30%
1002010020
.interrogate()
1002110021
)
1002210022

0 commit comments

Comments
 (0)