add check against any
This commit is contained in:
parent
024efa3ec3
commit
b09907c269
@ -738,6 +738,8 @@ def typehint_issubclass(possible_subclass: Any, possible_superclass: Any) -> boo
|
|||||||
"""
|
"""
|
||||||
if possible_superclass is Any:
|
if possible_superclass is Any:
|
||||||
return True
|
return True
|
||||||
|
if possible_subclass is Any:
|
||||||
|
return False
|
||||||
|
|
||||||
provided_type_origin = get_origin(possible_subclass)
|
provided_type_origin = get_origin(possible_subclass)
|
||||||
accepted_type_origin = get_origin(possible_superclass)
|
accepted_type_origin = get_origin(possible_superclass)
|
||||||
|
Loading…
Reference in New Issue
Block a user