10
10
from keyword import iskeyword
11
11
import sys
12
12
import typing
13
- from typing import Any , ForwardRef , Hashable , Optional , TypeVar , Union , get_type_hints
13
+ from typing import (
14
+ Any ,
15
+ ForwardRef ,
16
+ Hashable ,
17
+ Optional ,
18
+ TypeVar ,
19
+ Union ,
20
+ get_type_hints ,
21
+ )
14
22
import typing_extensions
15
23
16
24
from .validation_failure import (
@@ -220,6 +228,7 @@ def _type_error(
220
228
setattr (error , "validation_failure" , validation_failure )
221
229
return error
222
230
231
+
223
232
def _typevar_error (val : Any , t : Any , bound_error : TypeError ) -> TypeError :
224
233
assert hasattr (bound_error , "validation_failure" ), bound_error
225
234
cause = getattr (bound_error , "validation_failure" )
@@ -229,6 +238,7 @@ def _typevar_error(val: Any, t: Any, bound_error: TypeError) -> TypeError:
229
238
setattr (error , "validation_failure" , validation_failure )
230
239
return error
231
240
241
+
232
242
def _idx_type_error (
233
243
val : Any , t : Any , idx_error : TypeError , * , idx : int , ordered : bool
234
244
) -> TypeError :
@@ -524,6 +534,7 @@ def _extract_dtypes(t: Any) -> typing.Sequence[Any]:
524
534
dtype for member in t .__args__ for dtype in _extract_dtypes (member )
525
535
]
526
536
import numpy as np # pylint: disable = import-outside-toplevel
537
+
527
538
if hasattr (t , "__origin__" ):
528
539
t_origin = t .__origin__
529
540
if t_origin in {
@@ -542,8 +553,10 @@ def _extract_dtypes(t: Any) -> typing.Sequence[Any]:
542
553
return [t ]
543
554
raise TypeError ()
544
555
556
+
545
557
def _validate_numpy_array (val : Any , t : Any ) -> None :
546
558
import numpy as np # pylint: disable = import-outside-toplevel
559
+
547
560
if not isinstance (val , TypeInspector ):
548
561
_validate_type (val , np .ndarray )
549
562
assert hasattr (t , "__args__" ), _missing_args_msg (t )
@@ -588,6 +601,7 @@ def _validate_typevar(val: Any, t: TypeVar) -> None:
588
601
except TypeError as e :
589
602
raise _typevar_error (val , t , e ) from None
590
603
604
+
591
605
# def _validate_callable(val: Any, t: Any) -> None:
592
606
# """
593
607
# Callable validation
0 commit comments