We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d7e302 commit 013f373Copy full SHA for 013f373
typing_validation/validation.py
@@ -566,7 +566,7 @@ def validate(val: Any, t: Any) -> None:
566
raise unsupported_type_error
567
if t in _basic_types:
568
# speed things up for the likely most common case
569
- _validate_type(val, t)
+ _validate_type(val, typing.cast(type, t))
570
return
571
if t is None or t is NoneType:
572
if isinstance(val, TypeInspector):
@@ -576,7 +576,7 @@ def validate(val: Any, t: Any) -> None:
576
raise _type_error(val, t)
577
578
if t in _pseudotypes:
579
580
581
if t is Any:
582
0 commit comments