File tree 2 files changed +2
-2
lines changed
Filter options
2 files changed +2
-2
lines changed
Original file line number Diff line number Diff line change @@ -592,7 +592,7 @@ def validate_sketch(s):
592
592
try :
593
593
return tuple (_listify_validator (validate_float , n = 3 )(s ))
594
594
except ValueError :
595
- raise ValueError ("Expected a ' scale, length, randomness' triplet" )
595
+ raise ValueError ("Expected a ( scale, length, randomness) triplet" )
596
596
597
597
598
598
def validate_path_effects (s ):
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ class ValidateInStrings:
29
29
30
30
def validate_any (s : Any ) -> Any : ...
31
31
def validate_anylist (s : Any ) -> list [Any ]: ...
32
- def validate_anydict (allow_none : bool = True , required_keys : set = None
32
+ def validate_anydict (allow_none : bool = True , required_keys : set [ str ] | None = None
33
33
) -> Callable [[dict [str , Any ]| None ], dict [str , Any ]]: ...
34
34
def validate_bool (b : Any ) -> bool : ...
35
35
def validate_axisbelow (s : Any ) -> bool | Literal ["line" ]: ...
You can’t perform that action at this time.
0 commit comments