Skip to content

Commit fee1e15

Browse files
committed
docs: correct PossibleValueTypes note in between to include None
1 parent 70de324 commit fee1e15

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/validators/between.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def between(
5959
(TypeError): If there's a type mismatch during comparison.
6060
6161
Note:
62-
- `PossibleValueTypes` = `TypeVar("PossibleValueTypes", int, float, str, datetime)`
62+
- `PossibleValueTypes` = `TypeVar("PossibleValueTypes", int, float, str, datetime, None)`
6363
- If neither `min_val` nor `max_val` is provided, result will always be `True`.
6464
"""
6565
if value is None:

0 commit comments

Comments
 (0)