Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions docs/_quarto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,12 @@ website:
bread-crumbs: false
favicon: assets/fav-logo.png
site-url: https://posit-dev.github.io/pointblank/
repo-url: https://github.com/posit-dev/pointblank
description: "Find out if your data is what you think it is"
navbar:
logo: assets/pointblank_logo.svg
title: false
left:
- text: User Guide
file: user-guide/index.qmd
- text: Examples
file: demos/index.qmd
- href: reference/index.qmd
Expand All @@ -64,7 +65,9 @@ website:
contents:
- section: "Getting Started"
contents:
- user-guide/index.qmd
- text: "Welcome to Pointblank"
href: index.qmd
- user-guide/quickstart.qmd
- user-guide/installation.qmd
- section: "Validation Plan"
contents:
Expand Down
2 changes: 1 addition & 1 deletion docs/blog/validation-libs-2025/index.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ class UserSchema(dy.Schema):

# Use @dy.rule() for age range validation
@dy.rule()
def age_in_range() -> pl.Expr:
def age_in_range(cls) -> pl.Expr:
return pl.col("age").is_between(18, 80, closed="both")

# Validate using the schema
Expand Down
Loading
Loading