Skip to content

Commit 9771380

Browse files
committed
add ignores
1 parent daf0046 commit 9771380

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

integrations/anthropic/src/haystack_integrations/components/generators/anthropic/chat/foundry_chat_generator.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ def run(
229229
"""
230230
if not self._is_warmed_up:
231231
self.warm_up()
232-
return super(AnthropicFoundryChatGenerator, self).run(
232+
return super(AnthropicFoundryChatGenerator, self).run( # noqa: UP008
233233
messages=messages, streaming_callback=streaming_callback, generation_kwargs=generation_kwargs, tools=tools
234234
)
235235

@@ -255,7 +255,7 @@ async def run_async(
255255
"""
256256
if not self._is_warmed_up:
257257
self.warm_up()
258-
return await super(AnthropicFoundryChatGenerator, self).run_async(
258+
return await super(AnthropicFoundryChatGenerator, self).run_async( # noqa: UP008
259259
messages=messages, streaming_callback=streaming_callback, generation_kwargs=generation_kwargs, tools=tools
260260
)
261261

0 commit comments

Comments
 (0)