Update ruff

This commit is contained in:
Matt 2024-05-24 15:04:28 +01:00
parent 491cad643a
commit 1fa68da868
1 changed files with 2 additions and 1 deletions

View File

@ -102,7 +102,8 @@ def _parse_type_hint(hint):
if ... in args:
raise ValueError(
"Conversion of '...' is not supported in Tuple type hints. "
"Use List[] types for variable-length" " inputs instead."
"Use List[] types for variable-length"
" inputs instead."
)
return {"type": "array", "prefixItems": [_parse_type_hint(t) for t in args]}