lint: suppress PLR0915 on __next__ (matches existing __anext__ suppression)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
tko 2026-04-30 04:03:03 +00:00
parent 1479fd5645
commit df7148036a

View file

@ -75,7 +75,7 @@ class AnthropicStreamWrapper(AdapterCompletionStreamWrapper):
cache_read_input_tokens=0,
)
def __next__(self):
def __next__(self): # noqa: PLR0915
from .transformation import LiteLLMAnthropicMessagesAdapter
try: