Skip to content

Commit 9701bc4

Browse files
committed
Fix coverage
1 parent 0337c5a commit 9701bc4

File tree

1 file changed

+3
-3
lines changed
  • pydantic_ai_slim/pydantic_ai/models

1 file changed

+3
-3
lines changed

pydantic_ai_slim/pydantic_ai/models/groq.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -532,9 +532,9 @@ async def _get_event_iterator(self) -> AsyncIterator[ModelResponseStreamEvent]:
532532
args=error.failed_generation.arguments,
533533
)
534534
return
535-
except ValidationError as e:
536-
pass # pragma: no cover
537-
raise
535+
except ValidationError as e: # pragma: no cover
536+
pass
537+
raise # pragma: no cover
538538

539539
@property
540540
def model_name(self) -> GroqModelName:

0 commit comments

Comments
 (0)