From c4272d894f867e1cae416727cf0f57b435d71d94 Mon Sep 17 00:00:00 2001 From: yucheng Date: Fri, 18 Sep 2026 23:29:11 +0000 Subject: [PATCH] style(team): wrap the roster audit helper comprehensions at 120 columns Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> --- .../proxy/management_endpoints/test_team_endpoints.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/test_litellm/proxy/management_endpoints/test_team_endpoints.py b/tests/test_litellm/proxy/management_endpoints/test_team_endpoints.py index 0077be9bfbb..d391a3ebf9c 100644 --- a/tests/test_litellm/proxy/management_endpoints/test_team_endpoints.py +++ b/tests/test_litellm/proxy/management_endpoints/test_team_endpoints.py @@ -13611,7 +13611,9 @@ async def test_delete_team_emits_only_the_deleted_audit_event(monkeypatch): ) await _settle_audit_log_tasks() - team_events = [(p["object_id"], p["action"]) for p in audit_logger.payloads if p["table_name"] == "LiteLLM_TeamTable"] + team_events = [ + (p["object_id"], p["action"]) for p in audit_logger.payloads if p["table_name"] == "LiteLLM_TeamTable" + ] assert team_events == [("team-gone", "deleted")]