Skip to content

Commit 2cef5c1

Browse files
committed
style: remove unnecessary noqa C901 after complexity reduction
1 parent 96a489c commit 2cef5c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pydantic_ai_slim/pydantic_ai/result.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ async def get_output(self) -> OutputDataT:
186186
self._cached_output = await self.validate_response_output(self.response)
187187
return deepcopy(self._cached_output)
188188

189-
async def validate_response_output( # noqa: C901
189+
async def validate_response_output(
190190
self, message: _messages.ModelResponse, *, allow_partial: bool = False
191191
) -> OutputDataT:
192192
"""Validate a structured result message."""

0 commit comments

Comments
 (0)