Skip to content

Commit 013f373

Browse files
committed
Fixed mypy issues.
1 parent 3d7e302 commit 013f373

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

typing_validation/validation.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@ def validate(val: Any, t: Any) -> None:
566566
raise unsupported_type_error
567567
if t in _basic_types:
568568
# speed things up for the likely most common case
569-
_validate_type(val, t)
569+
_validate_type(val, typing.cast(type, t))
570570
return
571571
if t is None or t is NoneType:
572572
if isinstance(val, TypeInspector):
@@ -576,7 +576,7 @@ def validate(val: Any, t: Any) -> None:
576576
raise _type_error(val, t)
577577
return
578578
if t in _pseudotypes:
579-
_validate_type(val, t)
579+
_validate_type(val, typing.cast(type, t))
580580
return
581581
if t is Any:
582582
if isinstance(val, TypeInspector):

0 commit comments

Comments
 (0)