Skip to content

Commit 32a04ff

Browse files
committed
ignore aiter type verification
1 parent ef804bd commit 32a04ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

guardrails/classes/llm/llm_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def to_interface(self) -> ILLMResponse:
5656
async_stream_output.append(so)
5757
awaited_stream_output.append(str(async_to_sync(so)))
5858

59-
self.async_stream_output = aiter(async_stream_output) # type: ignore
59+
self.async_stream_output = aiter(async_stream_output) # type: ignore # noqa: F821
6060

6161
return ILLMResponse(
6262
prompt_token_count=self.prompt_token_count, # type: ignore - pyright doesn't understand aliases

0 commit comments

Comments
 (0)