user/path value check: add additional option

This commit is contained in:
Peter Bieringer
2026-04-22 20:08:07 +02:00
parent 0d658c08ea
commit 5a6bae0a2c
4 changed files with 8 additions and 6 deletions

View File

@@ -48,7 +48,7 @@ DEFAULT_CONFIG_PATH: str = os.pathsep.join([
PROFILING: Sequence[str] = ("per_request", "per_request_method", "none")
VALIDATE_TYPES: Sequence[str] = ("none", "minimal", "unicodeletter", "strict")
VALIDATE_TYPES: Sequence[str] = ("none", "minimal", "unicode-letter", "unicode-none", "strict")
def positive_int(value: Any) -> int: