mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-05 08:07:05 +00:00
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:
parent
37a9069066
commit
772f7bcb3a
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue