chore: justify module-alias cache write with rebind-ok

Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
This commit is contained in:
yassin 2026-09-01 16:01:43 +00:00
parent 37a9069066
commit 772f7bcb3a

View file

@ -371,7 +371,7 @@ def _lazy_import_sdk_module_alias(name: str) -> object:
if name in _globals:
return _globals[name]
module: Final = importlib.import_module(_SDK_MODULE_ALIASES[name])
_globals[name] = module
_globals[name] = module # rebind-ok: caches the resolved module alias on the package
return module