Skip to content

Commit 87b4118

Browse files
committed
Update Pointblank site README
1 parent a2d85a3 commit 87b4118

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/index.qmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ import pointblank as pb
2525

2626
validation = (
2727
pb.Validate(data=pb.load_dataset(dataset="small_table")) # Use Validate() to start
28-
.col_vals_gt(columns="d", value=100) # STEP 1 |
29-
.col_vals_le(columns="c", value=5) # STEP 2 | <-- Building a validation plan
30-
.col_exists(columns=["date", "date_time"]) # STEP 3 |
28+
.col_vals_gt(columns="d", value=100) # STEP 1 |
29+
.col_vals_le(columns="c", value=5) # STEP 2 | <-- Build up a validation plan
30+
.col_exists(columns=["date", "date_time"]) # STEPS 3 & 4 |
3131
.interrogate() # This will execute all validation steps and collect intel
3232
)
3333

0 commit comments

Comments
 (0)