Skip to content

Commit b290df7

Browse files
committed
Update README.md
1 parent 6810ba2 commit b290df7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ Let's take a Polars DataFrame and validate it against a set of constraints. We d
2323
```python
2424
import pointblank as pb
2525

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

34-
v.get_tabular_report()
34+
validation
3535
```
3636

3737
<img src="images/pointblank-tabular-report.png" alt="Validation Report">

0 commit comments

Comments
 (0)