fix(utils): suppress PLR0915 linter warning for __getattr__ function

The __getattr__ function intentionally has many statements to handle
multiple lazy-loaded imports. Add noqa comment to suppress the warning.
This commit is contained in:
Alexsander Hamir 2026-01-03 13:16:50 -08:00
parent 35f65c9901
commit 2af7c943e4

View file

@ -8697,7 +8697,7 @@ def should_run_mock_completion(
return False
def __getattr__(name: str) -> Any:
def __getattr__(name: str) -> Any: # noqa: PLR0915
"""Lazy import handler for utils module"""
_globals = _get_utils_globals()