feat(core): update _import_utils.py to not mask the thrown exception (#32071)

This commit is contained in:
efj-amzn 2025-07-16 14:11:56 -07:00 committed by GitHub
parent b49372595e
commit d3072e2d2e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -27,8 +27,8 @@ def import_attr(
else:
try:
module = import_module(f".{module_name}", package=package)
except ModuleNotFoundError:
msg = f"module '{package!r}.{module_name!r}' not found"
except ModuleNotFoundError as err:
msg = f"module '{package!r}.{module_name!r}' not found ({err})"
raise ImportError(msg) from None
result = getattr(module, attr_name)
return result