test out nested=0

This commit is contained in:
Khaleel Al-Adhami 2025-02-05 11:13:01 -08:00
parent edf1608cbb
commit 56487cd4be

View File

@ -191,7 +191,7 @@ def satisfies_type_hint(obj: Any, type_hint: Any) -> bool:
Returns:
Whether the object satisfies the type hint.
"""
return types._isinstance(obj, type_hint, nested=1)
return types._isinstance(obj, type_hint, nested=0)
class Component(BaseComponent, ABC):